# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
528011 | Hydrolyzed | Traffic (IOI10_traffic) | C++14 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
/*
* AUTHOR : Hydrolyzed~
* SCHOOL : RYW
* TASK : IOI10_traffic
* ALGO : Dynamic Programming on Tree
* DATE : 19 Feb 2022
* */
#include <bits/stdc++.h>
#include <ext/pb_ds/assoc_container.hpp>
#include <ext/pb_ds/tree_policy.hpp>
#include <ext/rope>
// @==== Libary ====@ //
#include "traffic.h"
// @================@ //
using namespace std;
using namespace __gnu_pbds;
using namespace __gnu_cxx;
template <typename T> using ordered_set = tree<T, null_type, less<T>, rb_tree_tag, tree_order_statistics_node_update> ;
// @=== Debugger ===@ //
#ifdef _DEBUG
#include "debug.hpp"
#else
#define dbg(...) 0
#endif
// @================@ //
using ll = long long;
const int MxN = 10000100;
int dp[MxN], pp[MxN], res = 1e9 + 1000, res_id;
void dfs(int u, int p){
dp[u] = pp[u];
for(auto x: adj[u]){
if(x == p){
continue;
}
dfs(x, u);
dp[u] += dp[x];
}
}
void dfs2(int u, int p, int last){
int maxx = last;
for(auto x: adj[u]){
if(x == p){
continue;
}
dfs2(x, u, last + dp[n] - dp[x]);
maxx = max(maxx, dp[x]);
}
if(res > maxx){
res = maxx;
res_id = u;
}
}
int LocateCentre(int n, int p[], int s[], int d[]){
for(int i=0; i<n-1; ++i){
adj[s[i]].push_back(d[i]);
adj[d[i]].puhs_back(s[i]);
}
memcpy(pp, p, sizeof p);
dfs(0, 0);
dfs2(0, 0, 0);
}
/*
inline void solution(){
return ;
}
signed main(){
cin.tie(nullptr)->ios::sync_with_stdio(false);
int q = 1;
// cin >> q;
while(q--){
solution();
cout << "\n";
}
return 0;
}
*/
// https://github.com/MasterIceZ/archive/tree/main/cpp-template