이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include"highway.h"
#include<bits/stdc++.h>
#ifndef EVAL
#include"grader.cpp"
#endif
using namespace std;
vector<pair<int,int>>g[90005];
int id[90005];
bool is[90005];
long long pivot;
void dfs(int v,int p,int depth){
if(depth==pivot){
is[v]=1;
}
for(auto to:g[v])if(to.first!=p){
id[to.first]=to.second;
dfs(to.first,v,depth+1);
}
}
void find_pair(int n,vector<int>x,vector<int>y,int a,int b){
vector<int>v(n-1,0);
pivot=ask(v)/a;
for(int i=0;i+1<n;i++){
g[x[i]].push_back({y[i],i});
g[y[i]].push_back({x[i],i});
}
dfs(0,0,0);
for(int i=1;i<n;i++)
if(is[i]){
v[id[i]]=1;
if(ask(v)!=pivot*a){
answer(0,i);
return;
}
v[id[i]]=0;
}
}
/*
5 4 1 2 0 4
0 1
0 2
1 3
1 4
*/
# | 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... |