제출 #554163

#제출 시각아이디문제언어결과실행 시간메모리
554163AlmaTraffic (IOI10_traffic)C++17
0 / 100
1 ms212 KiB
#include <bits/stdc++.h> // #include "traffic.h" using namespace std; typedef long long int ll; vector<vector<int>> graph; vector<ll> cost; vector<bool> visited; vector<ll> DP; ll traffic (int city) { if (DP[city] != -1) return DP[city]; DP[city] = cost[city]; visited[city] = true; for (int road: graph[city]) { if (!visited[road]) DP[city] += traffic(road); } return DP[city]; } int LocateCentre(int N, int pp[], int S[], int D[]) { graph.assign(N, vector<int>()); cost.clear(); DP.assign(N, -1); for (int i = 0; i < N; i++) { graph[S[i]].push_back(D[i]); graph[D[i]].push_back(S[i]); cost.push_back(pp[i]); } vector<pair<ll, int>> maximums (N); visited.assign(N, false); ll congestion = traffic(0); for (int city = 0; city < N; city++) { ll maxCongestion = 0; ll currTraffic = DP[city]; for (auto road: graph[city]) { if (DP[road] >= currTraffic) congestion = DP[road] - currTraffic; else congestion = DP[road]; maxCongestion = max(maxCongestion, congestion); } maximums[city].first = maxCongestion; maximums[city].second = city; } sort (maximums.begin(), maximums.end()); pair<ll, int> arenaCity = maximums[0]; return arenaCity.second; }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...