이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "friend.h"
#include <bits/stdc++.h>
#define F first
#define S second
#define V vector
#define PB push_back
#define EB emplace_back
#define MP make_pair
#define SZ(v) int((v).size())
#define ALL(v) (v).begin(), (v).end()
using namespace std;
typedef long long ll;
typedef pair<int, int> pi;
typedef V<int> vi;
const int INF = 1e9 + 7, N = 1003;
vi G[N];
int dp[N][2];
int findSample(int n, int a[], int host[], int op[]) {
for(int i = 1; i < n; i++) {
if(op[i]) return 0; // not tree
if(op[i] == 0) {
G[host[i]].PB(i);
G[i].PB(host[i]);
} else if(op[i] == 1) {
for(int j:G[host[i]]) {
G[j].PB(i);
G[i].PB(j);
}
} else {
for(int j:G[host[i]]) {
G[j].PB(i);
G[i].PB(j);
}
G[host[i]].PB(i);
G[i].PB(host[i]);
}
}
function<void(int)> dfs = [&] (int u) {
dp[u][1] += a[u];
for(int v:G[u]) if(v > u) {
dfs(v);
dp[u][1] += dp[v][0];
dp[u][0] += max(dp[v][0], dp[v][1]);
}
};
dfs(0);
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... |