이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#pragma GCC optimization "O2"
#pragma GCC optimization "unroll-loop"
#pragma GCC target ("avx2")
#include <bits/stdc++.h>
#define ll int
#define ld long double
#define fs first
#define sc second
using namespace std;
const ll N = 1e3 + 9;
const ll inf = 2e9 + 7;
const ll Log2 = 20;
typedef pair<ll,ll> LL;
vector<ll> g[N];
ll n,a[N],mn = inf,chosen,child[N],sum;
void DFS(ll u,ll p){
child[u] = a[u];
ll res = -inf;
for (auto i : g[u]){
if (i == p) continue;
DFS(i,u); child[u] += child[i];
res = max(res,child[i]);
}
res = max(res,sum - child[u]);
mn = min(mn,res);
//cout<<u<<" "<<mn<<" "<<res<<"\n";
if (res == mn) chosen = u;
}
ll LocateCentre(ll sz,ll P[],ll X[],ll Y[]){
n = sz;
for (ll i = 0;i < n;i++) a[i] = P[i],sum += a[i];
for (ll i = 0;i < n - 1;i++){
g[X[i]].push_back(Y[i]); g[Y[i]].push_back(X[i]);
}
DFS(0,-1);
//for (ll i = 0;i < n;i++) cout<<child[i]<<" ";
//exit(0);
return chosen;
}
컴파일 시 표준 에러 (stderr) 메시지
traffic.cpp:1: warning: ignoring '#pragma GCC optimization' [-Wunknown-pragmas]
1 | #pragma GCC optimization "O2"
|
traffic.cpp:2: warning: ignoring '#pragma GCC optimization' [-Wunknown-pragmas]
2 | #pragma GCC optimization "unroll-loop"
|
# | 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... |