洛谷——P1518 兩只塔姆沃斯牛 The Tamworth Two
https://www.luogu.org/problem/show?pid=1518
題目背景
題目描述
兩只牛逃跑到了森林裏。農夫John開始用他的專家技術追捕這兩頭牛。你的任務是模擬他們的行為(牛和John)。
追擊在10x10的平面網格內進行。一個格子可以是:
一個障礙物, 兩頭牛(它們總在一起), 或者 農民John. 兩頭牛和農民John可以在同一個格子內(當他們相遇時),但是他們都不能進入有障礙的格子。
一個格子可以是:
. 空地
- 障礙物
C 兩頭牛
F 農民John
這裏有一個地圖的例子:
*...*.....
......*...
...*...*..
..........
...*.F....
*.....*...
...*......
..C......*
...*.*....
.*.*......
牛在地圖裏以固定的方式遊蕩。每分鐘,它們可以向前移動或是轉彎。如果前方無障礙(地圖邊沿也是障礙),它們會按照原來的方向前進一步。否則它們會用這一分鐘順時針轉90度。 同時,它們不會離開地圖。
農民John深知牛的移動方法,他也這麽移動。
每次(每分鐘)農民John和兩頭牛的移動是同時的。如果他們在移動的時候穿過對方,但是沒有在同一格相遇,我們不認為他們相遇了。當他們在某分鐘末在某格子相遇,那麽追捕結束。
讀入十行表示農夫John,兩頭牛和所有障礙的位置的地圖。每行都只包含10個字符,表示的含義和上面所說的相同,你可以確定地圖中只有一個‘F‘和一個‘C‘.‘F‘和‘C‘一開始不會處於同一個格子中。
計算農夫John需要多少分鐘來抓住他的牛,假設牛和農夫John一開始的行動方向都是正北(即上)。 如果John和牛永遠不會相遇,輸出0。
輸入輸出格式
輸入格式:
每行10個字符,表示如上文描述的地圖。
輸出格式:
輸出一個數字,表示John需要多少時間才能抓住牛們。如果John無法抓住牛,則輸出0。
輸入輸出樣例
輸入樣例#1:*...*..... ......*... ...*...*.. .......... ...*.F.... *.....*... ...*...... ..C......* ...*.*.... .*.*......
49
說明
翻譯來自NOCOW
USACO 2.4
getchar --有毒~~RE WA MLE 快全了~~~
1 #include <algorithm> 2 #include <iostream> 3 #include <cstdio> 4 5 using namespace std; 6 7 char map[15][15],d1,d2; 8 int fx[4]= {-1,0,1,0}; 9 int fy[4]= {0,1,0,-1}; 10 struct Node 11 { 12 int x,y; 13 }cow,John; 14 15 int main() 16 { 17 for(int i=1;i<=10;i++) 18 for(int j=1;j<=10;j++) 19 { 20 cin>>map[i][j]; 21 if(map[i][j]==‘C‘) cow.x=i,cow.y=j; 22 if(map[i][j]==‘F‘) John.x=i,John.y=j; 23 } 24 for(int i=0;i<=11;i++) 25 map[i][0]=map[0][i]=map[11][i]=map[i][11]=‘*‘; 26 int ans=0; 27 while(cow.x!=John.x||cow.y!=John.y) 28 { 29 ans++; 30 if(map[cow.x+fx[d1]][cow.y+fy[d1]]==‘*‘) 31 d1=(d1+1)%4; 32 else cow.x+=fx[d1],cow.y+=fy[d1]; 33 if(map[John.x+fx[d2]][John.y+fy[d2]]==‘*‘) 34 d2=(d2+1)%4; 35 else John.x+=fx[d2],John.y+=fy[d2]; 36 if(ans>1e7) 37 { 38 puts("0"); 39 return 0; 40 } 41 } 42 printf("%d",ans); 43 }模擬
1 #include <algorithm> 2 #include <iostream> 3 #include <cstdio> 4 5 using namespace std; 6 7 int ans,d1,d2; 8 char map[15][15]; 9 int fx[4]={-1,0,1,0}; 10 int fy[4]={0,1,0,-1}; 11 struct Node 12 { 13 int x,y; 14 }cow,John; 15 16 void move(Node &it,int &d) 17 { 18 it.x+=fx[d];it.y+=fy[d]; 19 if(map[it.x][it.y]==‘*‘) 20 { 21 it.x-=fx[d]; 22 it.y-=fy[d]; 23 d=(d+1)%4; 24 } 25 } 26 27 void Catch() 28 { 29 if(cow.x==John.x&&cow.y==John.y||ans>40000) return ;//40000 改成1e7會MLE。。。 30 ans++; 31 move(cow,d1); 32 move(John,d2); 33 Catch(); 34 } 35 36 int main() 37 { 38 for(int i=1;i<=10;i++) 39 for(int j=1;j<=10;j++) 40 { 41 cin>>map[i][j]; 42 if(map[i][j]==‘C‘) cow.x=i,cow.y=j; 43 if(map[i][j]==‘F‘) John.x=i,John.y=j; 44 } 45 for(int i=0;i<=11;i++) 46 map[i][0]=map[0][i]=map[11][i]=map[i][11]=‘*‘; 47 Catch(); 48 if(ans>40000) ans=0; 49 printf("%d\n",ans); 50 return 0; 51 }搜索
洛谷——P1518 兩只塔姆沃斯牛 The Tamworth Two