이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "game.h"
#include <iostream>
#include <fstream>
#include <cstdio>
#include <algorithm>
#include <vector>
#include <string>
#include <map>
#define pb push_back
using namespace std;
const int maxn = 1505;
int n, r;
int a[maxn][maxn];
void initialize(int n) {
::n = n;
r = n * (n - 1) / 2;
for(int i = 0; i < n; i ++) {
for(int j = 0; j < n; j ++)
a[i][j] = -1;
}
}
int done[maxn];
int hasEdge(int x, int y) {
/*
if(done[x] < n - 2 && done[y] < n - 2) {
done[x] ++;
done[y] ++;
return 0;
} else {
done[x] ++;
done[y] ++;
return 1;
}
*/
if(x > y)
swap(x, y);
if(done[y] == y - 1)
return 1;
else {
done[y] ++;
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... |