이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "highway.h"
#include <bits/stdc++.h>
using namespace std;
void find_pair(int N, std::vector<int> U, std::vector<int> V, int A, int B) {
int m = V.size();
vector<int> ans;
vector<int> test(m , 0);
cout << "YES" << endl;
int li = ask(test);
bool good = true;
cout << "YES" << endl;
for (int i = 0 ; i < N && good ; i++){
vector<int> W(m);
for (int j = 0 ; j < m && good ; j++){
if (U[j] == i || V[j] == i){
W[j] = 1;
}
else W[j] = 0;
}
int an = ask(W);
if (an - B + A == li){
ans.push_back(i);
if (ans.size() == 2)good = false;
}
}
answer(ans[0] , ans[1]);
}
# | 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... |