Submission #1016484

#TimeUsernameProblemLanguageResultExecution timeMemory
1016484vjudge1Patkice (COCI20_patkice)C++17
30 / 50
1 ms348 KiB
#include<bits/stdc++.h> using namespace std; const int N = 100 + 10; char M[N][N]; bool found = false; string ans, path; void dfs(int x, int y) { path += M[x][y]; if(M[x][y] == 'x') { found = true; return; } if(M[x][y] == '^') dfs(x - 1, y); if(M[x][y] == 'v') dfs(x + 1, y); if(M[x][y] == '>') dfs(x, y + 1); if(M[x][y] == '<') dfs(x, y - 1); } int main() { int n, m; cin >> n >> m; for(int i = 0; i < n; i ++) for(int j = 0; j < m ; j ++) cin >> M[i][j]; pair<int,int> O; for(int i = 0; i < n; i++) for(int j = 0; j < m; j ++) if(M[i][j] == 'o') O = {i, j}; dfs(O.first, O.second + 1); if(found) { cout << ":)\nE\n"; return 0; } dfs(O.first - 1, O.second); if(found) { cout << ":)\nN\n"; return 0; } dfs(O.first, O.second - 1); if(found) { cout << ":)\nW\n"; return 0; } dfs(O.first + 1, O.second); if(found) { cout << ":)\nS\n"; return 0; } cout << ":(\n"; return 0; } // ENSW
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...