이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#define __MAXSIZE__ 100002
#include "friend.h"
#include <bits/stdc++.h>
using namespace std;
#define ll long long
#define f first
#define s second
#define forn(j, i, n) for(int i = j; i <= n; ++i)
#define FOR(j, i, n) for(int i = j; i < n; ++i)
#define nfor(j, i, n) for(int i = n; i >= j; --i)
#define IOS ios_base::sync_with_stdio(false), cin.tie(), cout.tie();
#define all(v) v.begin(), v.end()
#define pb push_back
const int maxn = 2e5+100;
//#define int ll
#define pii pair <int, int>
int inf = 1e9;
int a[maxn], q[maxn], p[maxn];
int findSample(int n,int confidence[],int host[],int protocol[])
{
forn(1, i, n)
{
a[i] = confidence[i-1];
p[i] = a[i];
q[i] = 0;
}
nfor(2, i, n)
{
int x = host[i-1] + 1;
int y = i;
if(protocol[i-1] == 0)
{
p[x] = p[x] + q[y];
q[x] = max(p[y] + q[x], q[x] + q[y]);
}
else if(protocol[i-1] == 1)
{
p[x] = max({p[x] + p[y], p[x] + q[y], q[x] + p[y]});
q[x] = q[x] + q[y];
}
else
{
p[x] = max(p[x] + q[y], q[x] + p[y]);
q[x] = q[x] + q[y];
}
}
return max(p[1], q[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... |