# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1056654 | PanosPask | 구슬과 끈 (APIO14_beads) | C++14 | 1053 ms | 1628 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define pb push_back
#define mp make_pair
using namespace std;
typedef pair<int, int> pi;
const int INF = 1e9;
int N;
vector<vector<pi>> adj_list;
/* dp[node][is_middle]:
* The maximum score in the subtree of node.
* is_middle is a boolean variable denoting if node was inserted in the middle via insert operation
*/
vector<vector<int>> dp;
void process_subtree(int node, int par)
{
dp[node][0] = 0;
dp[node][1] = -INF;
// Maximum gain from using one of the kids as an endpoint for a red edge starting at par
// and then inserting node and making the edges blue
int opt_follow = -INF;
for (auto [neigh, w] : adj_list[node]) {
if (neigh == par) {
continue;
}
process_subtree(neigh, node);
// Gain is the maximum we can get
int gain = max(dp[neigh][1] + w, dp[neigh][0]);
dp[node][0] += max(dp[neigh][1] + w, dp[neigh][0]);
opt_follow = max(opt_follow, dp[neigh][0] + w - gain);
}
if (opt_follow != -INF) {
dp[node][1] = dp[node][0] + opt_follow;
}
}
int main(void)
{
scanf("%d", &N);
adj_list.resize(N);
dp.resize(N, vector<int>(2, -INF));
for (int i = 0; i < N - 1; i++) {
int u, v, w;
scanf("%d %d %d", &u, &v, &w);
u--; v--;
adj_list[u].pb(mp(v, w));
adj_list[v].pb(mp(u, w));
}
int ans = 0;
for (int i = 0; i < N; i++) {
process_subtree(i, i);
ans = max(ans, dp[i][0]);
}
printf("%d\n", ans);
return 0;
}
컴파일 시 표준 에러 (stderr) 메시지
# | 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... |