이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "game.h"
#include <bits/stdc++.h>
// Subtask 1 n = 4
using namespace std;
const int N = 1505;
int cont[N];
int neg = 0;
int n, r;
void initialize(int nn) {
memset(cont, 0, sizeof cont);
neg = 0;
n = nn;
r = n * (n - 1) / 2;
return;
}
int hasEdge(int u, int v) {
if(cont[u] == n-2 or cont[v] == n-2){
// must be positive
return 1;
}
if(neg == r - n + 1){
// must be positive
return 1;
}
cont[u]++;
cont[v]++;
neg++;
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... |