이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#include "game.h"
using namespace std;
int nodes;
std::vector<int> to_ask;
std::vector<bool> connected;
void initialize(int n) {
nodes = n;
to_ask.assign(n, n-1);
connected.assign(n, false);
}
int hasEdge(int u, int v) {
if((to_ask[u]==1 and !connected[u]) or (to_ask[v]==1 and !connected[v])) {
to_ask[u]--;
to_ask[v]--;
connected[u] = true;
connected[v] = true;
return 1;
}
else {
to_ask[u]--;
to_ask[v]--;
return 0;
}
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |