이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "game.h"
#include <bits/stdc++.h>
using namespace std;
const int mxN = 1505;
int cc[mxN];
bool vis[mxN][mxN];
int N, edges;
void initialize(int n) {
N = n;
edges = 1;
for(int i = 0; i < N; i++) {
cc[i] = 0;
vis[i][i] = true;
if(i == 0) continue;
edges *= i;
}
}
int hasEdge(int u, int v) {
cc[u]++, cc[v]++;
if(cc[u] == N-1 || cc[v] == N-1 || edges == N-1) {
if(!vis[u][v]) {
vis[u][v] = vis[v][u] = true;
return true;
}
}
edges--;
return false;
}
// int main() {
// int n;
// scanf("%d", &n);
// initialize(n);
// int r = n*(n-1)/2;
// while(r--) {
// int u, v;
// scanf("%d %d", &u, &v);
// bool ok = hasEdge(u, v);
// if(ok)
// printf("yes\n");
// else
// printf("no\n");
// }
// 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... |