# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
263243 | NicolaAbusaad2014 | 통행료 (IOI18_highway) | C++14 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "highway.h"
#include <bits/stdc++.h>
using namespace std;
long long mn;
int T;
map<long,map<long,long> >m;
vector<long long>edges;
void dfs(long n,long p,long d)
{
if(d==mn){
std::vector<int> w(M);
for (int i = 0; i < M; ++i) {
w[i] = 0;
if(i==m[n][p]){
w[i]=1;
}
}
long long toll = ask(w);
if(toll>(mn*A)){
T=n;
}
return;
}
for(long i=0;i<(long)edges(n).size();i++){
dfs(edges[n][i],n,d+1);
}
}
void find_pair(int N, std::vector<int> U, std::vector<int> V, int A, int B) {
int M = U.size();
vector<int> w(M);
for (int i = 0; i < M; ++i) {
w[i] = 0;
}
mn=(ask(w)/A);
edges.resize(N);
for(long i=0;i<M;i++){
edges(V[i]).push_back(U[i]);
edges(U[i]).push_back(V[i]);
m[V[i]][U[i]]=i;
m[U[i]][V[i]]=i;
}
dfs(0,0,0);
answer(0,T);
}