이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "friend.h"
#include <bits/stdc++.h>
using namespace std;
using pii = pair<int, int>;
const int MN = 1e5 + 1, inf = 0x3f3f3f3f;
int dp[MN][2], val[MN];
struct Edge{ int to, t; };
vector<Edge> adj[MN];
void dfs(int v){
int tot0 = 0, tot1 = 0, tot2 = 0;
for (auto [to, t] : adj[v]){
dfs(to);
if (t == 0){
tot0 += dp[to][0];
tot1 += dp[to][1];
tot2 += dp[to][1];
}
if (t == 1 || t == 2){
tot2 = max(tot0 + dp[to][1], tot2 + dp[to][0]);
if (t == 1) tot0 += dp[to][1];
if (t == 2) tot0 += dp[to][0];
tot1 += dp[to][0];
}
}
dp[v][0] = tot1;
dp[v][1] = max(tot0 + val[v], tot2);
}
int findSample(int n, int confidence[], int host[], int protocol[]){
for (int i = 0; i < n; ++i) val[i] = confidence[i];
for (int i = 1; i < n; ++i){
adj[host[i]].push_back({i, protocol[i]});
}
dfs(0);
// for (int i = 0; i < n; ++i) cout << i << ": " << dp[i][0] << " " << dp[i][1] << '\n';
return max(dp[0][0], dp[0][1]);
}
# | 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... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |