제출 #554173

#제출 시각아이디문제언어결과실행 시간메모리
554173AlmaTraffic (IOI10_traffic)C++17
컴파일 에러
0 ms0 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; int arenaCity; 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]; } void untraffic (int city, int cityMaxDiff) { int bestCity = city; ll bestDiff = cityMaxDiff, maxCongestion = DP[city]; for (int road: graph[city]) { if (DP[road] < maxCongestion) continue; ll diff = maxCongestion - DP[road]; if (diff < bestDiff) { bestCity = road; bestDiff = diff; } } if (bestCity != city) { DP[city] -= DP[bestCity]; DP[bestCity] = maxCongestion; arenaCity = bestCity; untraffic(bestCity, DP[bestCity] - 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]); } visited.assign(N, false); ll congestion = traffic(0); congestion = 0; for (auto road: graph[0]) { congestion = max(congestion, DP[0] - DP[road]); } arenaCity = 0; untraffic(0, congestion); return arenaCity; }

컴파일 시 표준 에러 (stderr) 메시지

traffic.cpp: In function 'void untraffic(int, int)':
traffic.cpp:44:53: error: expected ';' before '}' token
   44 |         untraffic(bestCity, DP[bestCity] - DP[city])
      |                                                     ^
      |                                                     ;
   45 |     }
      |     ~