이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
const int c=1502;
int db[c], cnt, n;
bool v[c], e[c][c];
bool hasEdge(int a, int b) {
if (v[b]) swap(a, b);
if (!v[a]) {
e[a][b]=1, e[b][a]=1;
return 0;
}
if (db[b]!=cnt) {
db[b]++;
return 0;
}
v[b]=1, cnt++;
for (int i=0; i<n; i++) db[i]+=e[b][i];
return 1;
}
void initialize(int w) {
n=w, v[0]=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... |