# | 제출 시각UTC-0 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
401797 | jli12345 | Tracks in the Snow (BOI13_tracks) | C++14 | 1498 ms | 144792 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
typedef pair<int, int> pii;
#define f first
#define s second
int N, M;
char arr[4100][4100];
int depth[4100][4100];
struct comp{
bool operator()(const pair<pii, int> &a, const pair<pii, int> &b){
return a.s > b.s;
}
};
int xd[4] = {1, -1, 0, 0};
int yd[4] = {0, 0, 1, -1};
int main(){
cin >> N >> M;
for (int i = 1; i <= N; i++){
for (int j = 1; j <= M; j++){
cin >> arr[i][j];
}
}
deque<pair<pii, int>> dq;
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |