이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "friend.h"
#include <iostream>
using namespace std;
const int nmax=100005;
int best[nmax][2];
int a[nmax],val[nmax];
int nr,p,tip,i,tt;
int findSample(int n,int confidence[],int host[],int protocol[]){
for(i=0;i<n;i++)
best[i][1]=confidence[i];
for(int i=n-1;i>=1;i--)
{
tt=host[i];tip=protocol[i];
if(tip==0)
{
best[tt][0]+=max(best[i][0],best[i][1]);
best[tt][1]+=best[i][0];
}
if(tip==1)
{
best[tt][1]=max(max(best[tt][0]+best[i][1],best[tt][1]+best[i][0]),best[tt][1]+best[i][1]);
best[tt][0]+=best[i][0];
}
if(tip==2)
{
best[tt][1]=max(best[tt][0]+best[i][1],best[tt][1]+best[i][0]);
best[tt][0]+=best[i][0];
}
}
return max(best[0][0],best[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... |