洛谷P1518 [USACO2.4]两只塔姆沃斯牛 The Tamworth Two

在这里插入图片描述
在这里插入图片描述

#include<iostream>
#include<algorithm>
#include<cmath> 
using namespace std;
char forest[12][12];
//方向
int x[] = {-1,0,1,0};
int y[] = {0,1,0,-1};
int f1,f2;//农夫的坐标
int c1,c2;//牛的坐标
bool t[160005];//状态数组
void fun(int x1,int y1,int x2,int y2){//函数
	int pos1 = 0,pos2 = 0;//农夫和牛的朝向
	int ans = 0;//时间
	while(1){
		if(x1 == x2 && y1 == y2){//坐标相等,可以抓到
			cout << ans;
			return ;
		}
		else{
			if(x1 + x[pos1] > 0 && y1 + y[pos1] > 0 && x1 + x[pos1] <= 10 && y1 + y[pos1] <= 10 && forest[x1+x[pos1]][y1+y[pos1]] != '*'){//移动
				x1 += x[pos1],y1 += y[pos1];
			}
			else{//调整方向
				pos1++;
				pos1 %= 4;
			}
			if(x2 + x[pos2] > 0 && y2 + y[pos2] > 0 && x2 + x[pos2] <= 10 && y2 + y[pos2] <= 10 && forest[x2+x[pos2]][y2+y[pos2]] != '*'){//移动
				x2 += x[pos2],y2 += y[pos2];
			}
			else{//调整方向
				pos2++;
				pos2 %= 4;
			}
			ans++;
			int p = x1+y1*10+x2*100+y2*1000+pos1*10000+pos2*40000;//判断状态是否出现过
			if(t[p]){//出现过,死循环
				cout << 0;
				return ;
			}
			else{//,未出现过,记录状态
				t[p] = 1;
			}
		}
	}
}
int main(){
	int i,j;
	for(i = 1; i <= 10; ++i)
		for(j = 1; j <= 10; ++j){
			cin >> forest[i][j];
			if(forest[i][j] == 'F')f1 = i,f2 = j;
			if(forest[i][j] == 'C')c1 = i,c2 = j;
		}
	fun(f1,f2,c1,c2);
	return 0;
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
回答: 题目P1518 \[USACO2.4\] 两只塔姆沃斯牛是一道模拟题,题目要求判断Farmer John和两头牛是否会相遇。解题思路可以分为两种方法。一种方法是记录二者的状态,如果出现了与前面相同的状态则说明陷入了死循环。具体实现步骤可以使用数组来记录Farmer John和两头牛的坐标、方向等状态信息,然后判断是否出现了重复的状态。另一种方法是利用博弈的思想,如果二者会同时回到一种状态,那么说明他们不会再相遇了,因为这时候他们已经陷入了一种对称性的状态。通过判断是否存在一种线性关系,可以确定二者是否会相遇。\[1\]\[2\]\[3\] #### 引用[.reference_title] - *1* [P1518 [USACO2.4]两只塔姆沃斯牛 The Tamworth Two](https://blog.csdn.net/TD123456q/article/details/125688037)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v91^insertT0,239^v3^insert_chatgpt"}} ] [.reference_item] - *2* [洛谷P1518 [USACO2.4]两只塔姆沃斯牛 The Tamworth Two 题解 (C/C++)](https://blog.csdn.net/Jason__Jie/article/details/115027619)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v91^insertT0,239^v3^insert_chatgpt"}} ] [.reference_item] - *3* [(移动方向状态标志)P1518 [USACO2.4]两只塔姆沃斯牛 The Tamworth Two题解](https://blog.csdn.net/m0_57221330/article/details/119980758)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v91^insertT0,239^v3^insert_chatgpt"}} ] [.reference_item] [ .reference_list ]
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值