# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
438262 | bobbilyking | 친구 (IOI14_friend) | C++17 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "friend.h"
#include<bits/stdc++.h>
using namespace std;
#define N 100010
typedef long long int ll;
ll cost[N], bip[N];
vector<ll> adj[N];
void dfs(int i, int p, int t){
if (bip[i]!=-1) return;
bip[i] = t;
for (int x: adj[i]){
if (x==p) continue;
dfs(x,i,(t+1)&1);
}
}
int findSample(ll n, ll c[], ll h[], ll p[]){
int sum = 0;
ll mx = 0;
int prot[3];
for (int i= 0 ; i < 3; i++) prot[i] = 0;
for (int i = 0 ; i< n; i++) {
cost[i] = c[i];
sum += c[i];
mx = max(mx,c[i]);
}
for (int i =1; i < n; i++){
prot[p[i]]++;
}
int ans = 0;
if (prot[1]==n-1){
ans = sum;
}
else if (prot[2]==n-1){
ans = mx;
}
else if (prot[3] == n-1){
for (int i = 1; i < n; i++){
adj[i].push_back(h[i]);
adj[h[i]].push_back(i);
}
for (int i = 0 ; i < n; i+=1) bip[i] = -1;
dfs(0,0,0);
int s2 = 0;
for (int i = 0; i < n; i+=1) if (bip[i] ==1)s2+=c[i];
ans = max(s2,sum-s2);
}
return ans;
}
void readInput(){
ll n; cin>>n;
ll c[n], h[n], p[n];
for (int i = 0; i < n; i++) cin>>c[i];
for (int i =0 ; i < n; i++) cin>>h[i];
for (int i =0; i < n; i++) cin>>p[i];
cout<<findSample(n,c,h,p)<<'\n';
}
int main(){
//readInput();
}