이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "game.h"
#include <bits/stdc++.h>
using namespace std;
static const int buf_size = 4096;
vector<vector<int>> tree;
void initialize(int N){
tree.assign(N, vector<int>(N, -1));
}
int hasEdge(int u, int v){
int c = min(count(tree[v].begin(), tree[v].end(), -1), count(tree[u].begin(), tree[u].end(), -1));
cout << c << endl;
if(c > 2){
tree[u][v] = 0;
tree[v][u] = 0;
return 0;
}
else{
tree[u][v] = 1;
tree[v][u] = 1;
return 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... |