-
Notifications
You must be signed in to change notification settings - Fork 0
/
botclean.cpp
73 lines (68 loc) · 1.08 KB
/
botclean.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
#include<iostream>
#include<vector>
using namespace std;
void file(){
freopen("input.txt","r",stdin);
freopen("output.txt","w",stdout);
}
void nextMove(int posr, int posc, vector <string> board) {
int bx,by,px,py;
bx=posr;
by=posc;
for(int i=0;i<5;i++){
for(int j=0;j<5;j++){
if(board[i][j]=='d'){
px=i;
py=j;
}
}
}
int updown=px-bx;
int leftright=py-by;
if(updown<0){
while(updown!=0){
cout << "UP\n";
break;
updown++;
}
}
else if(updown>0){
while(updown!=0){
cout << "DOWN\n";
break;
updown--;
}
}
else if(leftright<0){
while(leftright!=0){
cout << "LEFT\n";
break;
leftright++;
}
}
else if(leftright>0){
while(leftright!=0){
cout << "RIGHT\n";
break;
leftright--;
}
}
}
void run(){
int pos[2];
vector <string> board;
cin>>pos[0]>>pos[1];
for(int i=0;i<5;i++) {
string s;
cin >> s;
board.push_back(s);
}
nextMove(pos[0], pos[1], board);
}
int main(void) {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
file();
run();
return 0;
}