# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
991075 | borisAngelov | Traffic (IOI10_traffic) | C++17 | 5 ms | 33116 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "traffic.h"
#include <bits/stdc++.h>
using namespace std;
const int maxn = 1000005;
const long long inf = (1LL << 60);
int n;
int a[maxn];
vector<int> g[maxn];
long long ans[maxn];
long long subtreeSum[maxn];
long long down[maxn];
void dfs(int node, int par, int dep)
{
down[node] = 0;
subtreeSum[node] = a[node];
for (int i = 0; i < g[node].size(); ++i)
{
int to = g[node][i];
if (to != par)
{
dfs(to, node, dep + 1);
subtreeSum[node] += subtreeSum[to];
down[node] = max(down[node], subtreeSum[to]);
}
}
}
int LocateCentre(int N, int pp[], int S[], int D[])
{
n = N;
for (int i = 1; i <= n; ++i)
{
a[i] = pp[i - 1];
if (i == n)
{
break;
}
int x = S[i - 1];
int y = D[i - 1];
++x;
++y;
g[x].push_back(y);
g[y].push_back(x);
}
long long ans = inf;
for (int i = 1; i <= n; ++i)
{
dfs(i, -1, 0);
ans = min(ans, down[i]);
}
return ans;
}
컴파일 시 표준 에러 (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... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |