# | 제출 시각UTC-0 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
441343 | HadiHosseini | Tracks in the Snow (BOI13_tracks) | C++14 | 578 ms | 118996 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
const int N = 4000;
const int M = 4000;
int n, m;
char a[N][M];
int d[N][M];
int ans = 1;
int dx[4] = {1, -1, 0, 0};
int dy[4] = {0, 0, 1, -1};
bool inside(int r, int c) {
if (r < 0 || r > n || c < 0 || c > m) return false;
if (a[r][c] == '.') return false;
return true;
}
int main(){
ios::sync_with_stdio(0);
cin.tie(0);
cin >> n >> m;
for(int i = 0 ; i < n; i++){
string s; cin >> s;
for(int j = 0 ; j < m; j++){
a[i][j] = s[j];
}
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |