# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
421500 | Sundavar | 통행료 (IOI18_highway) | C++14 | 3058 ms | 1384 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#include "highway.h"
using namespace std;
typedef pair<int,int> pii;
struct node{
vector<pii> to;
int depth = 0;
bool was = false;
};
vector<node> graph;
void DFS(int curr){
graph[curr].was = true;
for(pii& a : graph[curr].to)
if(!graph[a.first].was)
graph[a.first].depth = graph[curr].depth +1, DFS(a.first);
graph[curr].was = false;
}
vector<pii> poss;
void find_pair(int N, vector<int> U, vector<int> V, int A, int B) {
graph.resize(N);
int M = U.size();
for(int i = 0; i < M; i++){
graph[U[i]].to.push_back({V[i],i});
graph[V[i]].to.push_back({U[i],i});
}
DFS(0);
vector<int> s(N, 0);
int at = ask(s)/A;
for(int i = 0; i < N; i++)
if(graph[i].depth == at-1)
for(pii& a : graph[i].to) poss.push_back(a);
while(poss.size() > 1){
s.assign(N, 0);
for(int i = 0; i < poss.size()/2; i++) s[poss[i].second] = 1;
if(ask(s) == (at-1)*A + B) poss.resize(poss.size()/2);
else{
vector<pii> uj;
for(int i = poss.size()/2; i < poss.size(); i++) uj.push_back(poss[i]);
poss = uj;
}
}
answer(0, poss[0].first);
}
컴파일 시 표준 에러 (stderr) 메시지
# | 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... |