# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
138305 | Nucleist | 친구 (IOI14_friend) | C++14 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#include "friend.h"
using namespace std;
#define flash ios_base::sync_with_stdio(false); cin.tie(0); cout.tie(0)
#define debug(x) cerr << " - " << #x << ": " << x << endl;
#define debugs(x, y) cerr << " - " << #x << ": " << x << " " << #y << ": " << y << endl;
#define all(x) (x).begin(),(x).end()
#define sz(x) (ll)x.size()
#define ll long long
#define INF 1000000000
#define pb push_back
struct greateri
{
template<class T>
bool operator()(T const &a, T const &b) const { return a > b; }
};
ll weight[11];
bool visited[11];
vector<ll>adj[11];
ll dal;
ll solve(ll node)
{
if(node>dal)return 0;
ll ans = 0;
if(!visited[node])
{
visited[node]=1;
for (ll i = 0; i < adj[node].size(); ++i)
{
ll next = adj[node][i];
visited[next]=1;
}
ans=max(ans,solve(node+1)+weight[node]);
for (ll i = 0; i < adj[node].size(); ++i)
{
ll next = adj[node][i];
visited[next]=0;
}
visited[node]=0;
}
ans = max(ans,solve(node+1));
return ans;
}
ll findSample(ll n,ll confidence[],ll host[],ll protocol[])
{
dal = n;
for (ll i = 0; i <= n; ++i)
{
weight[i]=confidence[i];
}
for (ll i = 1; i <= dal; ++i)
{
ll now = host[i];
ll prot = protocol[i];
ll newi = i;
if(prot==0 || prot==2)
{
adj[now].pb(newi);
adj[newi].pb(now);
}
if(prot==1 || prot==2)
{
for (ll j = 0; j < adj[now].size(); ++j)
{
ll neigh = adj[now][i];
adj[neigh].pb(newi);
adj[newi].pb(neigh);
}
}
}
return solve(0);
}
//code the AC sol !
// BS/queue/map