# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
584688 | teki | Traffic (IOI10_traffic) | C++11 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#include "traffic.h"
typedef long long ll;
#define pb push_back
#define MS(x,y) memset((x),(y),sizeof((x)))
const ll MN = 100000000000007;
using namespace std;
int LocateCentre(int n, int lugje[], int edPrv[], int edVtor[]) {
set<int> pat[n+5];
for (int i = 0; i<n-1; i++) {
pat[edPrv[i]].pb(edVtor[i]);
pat[edVtor[i]].pb(edPrv[i]);
}
priority_queue<pair<int,int>> pq;
for (int i = 0; i<n; i++) if (pat[i].size() == 1) pq.push({-lugje[i],i});
int res = 0;
while (!pq.empty()) {
int broj = pq.top().first, i = pq.top().second;
res = i;
pq.pop();
int sled = *pat[i].begin();
lugje[sled] += lugje[i];
pat[i].erase(sled);
pat[sled].erase(i);
if (pat[sled].size() == 1) pq.push({-lugje[sled],sled});
}
return res;
}
//int main()
//{
// #if LOCAL_DEBUG
// fstream cin("in.txt");
// #endif
//
// ios_base::sync_with_stdio(false);
// cin.tie(0);
// cout.tie(0);
//
//
//
// return 0;
//}