# | 제출 시각UTC-0 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
469218 | amirmohammad_nezami | 구슬과 끈 (APIO14_beads) | C++14 | 201 ms | 22284 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
#define F first
#define S second
#define PB push_back
#define _sz(e) e.size()
#define pii pair <int , int>
#define FAST ios::sync_with_stdio(0); cin.tie(0);
const int maxn = 2e5 + 4 , N = 1e6 + 4 , mod = 1e9 + 7 , INF = 1e9;
int n , dp[maxn] , gp[maxn] , zp[maxn];
vector <pii> edges[maxn];
void dfs(int v , int p = -1 , int W = 0) {
for (auto u : edges[v]) {
if(u.F != p) dfs(u.F , v , u.S);
}
for (auto u : edges[v]) {
if(u.F != p) {
dp[v] += max(dp[u.F] , gp[u.F]);
}
}
for (auto u : edges[v]) {
if(u.F != p) {
int others = dp[v] - max(dp[u.F] , gp[u.F]);
gp[v] = max(gp[v] , dp[u.F] + u.S + W + others);
}
}
# | 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... |