# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
140430 | arthurconmy | 통행료 (IOI18_highway) | C++14 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#ifndef ARTHUR_LOCAL
#include "highway.h"
#endif
using namespace std;
using ll = long long;
const int MAXN = 100;
int parent[MAXN];
int par_edge[100];
vector<pair<int,int>> adj[100];
void dfs(int v)
{
for(auto u:adj[v])
{
if(parent[u.first]!=-1) continue;
parent[u.first]=v;
par_edge[u.first]=u.second;
dfs(u.first);
}
}
void find_pair(int N, vector<int> U, vector<int> V, int A, int B)
{
for(int i=0; i<n; i++) parent[i]=-1;
for(int i=0; i<n-1; i++)
{
adj[U[i]].push_back({V[i],i});
adj[V[i]].push_back({U[i],i});
}
dfs(0);
vector<int> askin(n-1);
ll base = ask(askin);
vector<ll> anss(n);
ll max_cur=0;
for(int i=1; i<n; i++)
{
for(int j=0; j<n-1; j++) askin[j]=0;
int i_copy = i;
while(i_copy != 0)
{
askin[par_edge[i_copy]]=1;
i_copy=parent[i_copy];
}
ll cur = ask(askin);
anss[i]=cur;
max_cur=max(max_cur,cur);
}
for(int i=0; i<n; i++)
{
if(anss[i]==max_cur && anss[parent[i]]!=max_cur) answer(0,i);
}
}