# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
393545 | Genius3435 | Tracks in the Snow (BOI13_tracks) | C++17 | 1029 ms | 182728 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <bits/stdc++.h>
using namespace std;
using ll = long long;
using vi = vector<int>;
using pii = pair<int, int>;
#define F first
#define S second
#define allv(v) v.begin(), v.end()
#define alla(a, N) a, a + N
inline void fastIO() {
cin.tie(nullptr) -> sync_with_stdio(false);
}
const int dx[4] = { 0, 1, 0, -1};
const int dy[4] = { 1, 0, -1, 0};
const int arraysize = 5005;
char grid[arraysize][arraysize];
bool vis[arraysize][arraysize];
int dis[arraysize][arraysize];
inline string YNEOS(bool b) {
return b ? "YES" : "NO";
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |