이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "friend.h"
#include <vector>
#include <iostream>
#include <algorithm>
#define int int64_t
using namespace std;
// Find out best sample
signed findSample(signed n, signed confidence[], signed host[], signed protocol[])
{
vector<int> take;
for (int i = 0; i < n; i++) take.push_back(confidence[i]);
vector<int> nottake(n, 0);
for (int i = n - 1; i > 0; i--)
{
int hs = host[i];
if (protocol[i] == 0)
{
take[i] += nottake[hs];
nottake[i] += max(take[hs], nottake[hs]);
}
else if (protocol[i] == 1)
{
take[i] = max(take[i] + max(take[hs], nottake[hs]), nottake[i] + take[hs]);
nottake[i] += nottake[hs];
}
else
{
take[i] = max(take[i] + nottake[hs], take[hs] + nottake[i]);
nottake[i] += nottake[hs];
}
}
return max(take[0], nottake[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... |