# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
704567 | jamezzz | 친구 (IOI14_friend) | C++17 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "friend.h"
#incldue <bits/stdc++.h>
using namespace std;
#define maxn 100005
int take[maxn],notake[maxn];
// Find out best sample
int findSample(int n,int confidence[],int host[],int protocol[]){
for(int i=0;i<n;++i)take[i]=confidence[i];
for(int i=n-1;i>0;--i){
int h=host[i];
if(protocol[i]==0){//i am your friend
take[h]+=notake[i];
notake[h]+=max(take[i],notake[i]);
}
else if(protocol[i]==1){//my friends are your friends
take[h]=max(take[h]+take[i],max(take[h]+notake[i],notake[h]+take[i]));
notake[h]+=notake[i];
}
else{//we are your friends
take[h]=max(take[h]+notake[i],notake[h]+take[i]);
notake[h]+=notake[i];
}
}
return max(take[0],notake[0]);;
}