이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "friend.h"
#include <bits/stdc++.h>
using namespace std;
int notake[100005];
int findSample(int n, int take[], int host[], int protocol[]) {
for(int v = n-1;v >= 1;v--){
int u = host[v];
if(protocol[v] == 0){ //I Am Your Friend
take[u] += notake[v];
notake[u] += max(take[v],notake[v]);
}
else if(protocol[v] == 1){ //My Friends Are Your Friends
take[u] = max(take[u]+take[v],max(take[u]+notake[v],notake[u]+take[v]));
notake[u] += notake[v];
}
else{
take[u] = max(take[u]+notake[v],notake[u]+take[v]);
notake[u] += notake[v];
}
}
return max(take[0],notake[0]);
}
# | 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... |