# | 제출 시각UTC-0 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
917509 | garamlee500 | Tracks in the Snow (BOI13_tracks) | C++17 | 559 ms | 118376 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <iostream>
#include <deque>
#include <vector>
#include <limits>
using namespace std;
int maxY, maxX;
//bool visited[4000][4000] = {false};
int distances[4000][4000];
vector<string> grid;
pair<int, int> add(pair<int, int> a, pair<int, int> b){
return make_pair(a.first+b.first,a.second+b.second);
}
bool valid(pair<int, int> a){
if (a.first<0||a.first>=maxX||a.second<0||a.second>=maxY){
return false;
}
return grid[a.second][a.first]!='.';
}
int getEdge(pair<int, int> a, pair<int, int> b){
return grid[a.second][a.first] == grid[b.second][b.first] ? 0 : 1;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |