# | 제출 시각UTC-0 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
93126 | Vardanyan | Hard route (IZhO17_road) | C++14 | 19 ms | 15992 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
const int N = 500*1000+5;
vector<int> g[N];
int dist[N];
int par[N];
void dfs(int v,int p = -1){
par[v] = p;
for(int i = 0;i<g[v].size();i++){
int to = g[v][i];
if(to == p) continue;
dfs(to,v);
dist[v] = max(dist[v],dist[to]+1);
}
}
map<long long,int> H;
long long mx = 0;
int n;
void calc(int v,int hard = N,int d = 0,int p = -1){
if(g[v].size()>1 || p == -1 || (g[v].size() == 1 && d+1 == n)){
hard = min(hard,dist[v]);
}
if(g[v].size() == 1 && p!=-1){
long long now = (long long)hard*(long long)d;
H[now]++;
mx = max(mx,now);
}
for(int i = 0;i<g[v].size();i++){
int to = g[v][i];
if(to == p) continue;
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |