# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
807468 | gtm7 | Tracks in the Snow (BOI13_tracks) | C++17 | 2084 ms | 178312 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;
int a[4000][4000];
bool visited[4000][4000]{false};
int dx[4] = {1, 0, -1, 0};
int dy[4] = {0, 1, 0, -1};
int main()
{
int h, w;
cin >> h >> w;
char ch;
for (int i = 0; i < h; i++)
{
for (int j = 0; j < w; j++)
{
cin >> ch;
if (ch == 'F')
a[i][j] = 1;
else if (ch == 'R')
a[i][j] = 2;
else
a[i][j] = 3;
}
}
int ans = 1;
set<vector<int>> q;
vector<int> s;
int ii, jj;
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |