# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
513708 | 79brue | Snowy Roads (JOI16_snowy) | C++14 | 16 ms | 1832 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 "Anyalib.h"
#include <bits/stdc++.h>
using namespace std;
static int n;
static vector<int> link[502];
static bool mark[502];
static int depth[502];
static int numLoc[502], locCnt;
static int low[502];
static int dfs(int x, int par = -1){
int maxDepth = 0;
for(auto y: link[x]){
if(y == par) continue;
depth[y] = depth[x] + 1;
maxDepth = max(dfs(y, x)+1, maxDepth);
}
if(maxDepth == 11 || x==0){
mark[x] = 1;
numLoc[x] = locCnt;
locCnt += 9;
maxDepth = 0;
}
return maxDepth;
}
void InitAnya(int N, int A[], int B[]){
n = N;
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |