# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
344788 | JovanK26 | Tracks in the Snow (BOI13_tracks) | C++14 | 37 ms | 18668 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 n,m;
string mat[4001];
int co[4][2]={{1,0},{0,1},{-1,0},{0,-1}};
vector<pair<int,int> > pt[2];
int rez=0;
bool check(int i,int j)
{
if(i<0 || i>=n || j<0 || j>=m || mat[i][j]=='.')return 0;
return 1;
}
void dfs(int i,int j)
{
char cur=mat[i][j];
mat[i][j]='.';
for(int i=0;i<4;i++)
{
int c1=i+co[i][0];
int c2=j+co[i][1];
if(!check(c1,c2))
{
continue;
}
if(mat[c1][c2]==cur)
{
dfs(c1,c2);
}
else
Compilation message (stderr)
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |