# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
28133 | (#71) | 도시와 비트코인 (FXCUP2_city) | C++11 | 9 ms | 2024 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <cstdio>
#include <queue>
#include <utility>
using namespace std;
bool vs[310][310];
queue<pair<int, int> > q;
int main(){
int N, M; scanf("%d%d", &M, &N);
for(int i = 1; i <= N; i++){
for(int j = 1; j <= M; j++){
int x; scanf("%d", &x); vs[i][j] = x;
}
}
bool ans = false;
q.push({1, 1}); vs[1][1] = false;
while(!q.empty()){
int x = q.front().first, y = q.front().second; q.pop();
if(x == N && y == M){ ans = true; break; }
if(x + 1 <= N && vs[x + 1][y]){
q.push({x + 1, y}); vs[x + 1][y] = false;
}
if(y + 1 <= M && vs[x][y + 1]){
q.push({x, y + 1}); vs[x][y + 1] = false;
}
}
puts(ans ? "Yes" : "No");
return 0;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |