이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "game.h"
#include <bits/stdc++.h>
using namespace std;
const int maxn = 1.5e3 + 20;
vector<int> adj[maxn];
int q[maxn];
int flag[maxn];
int t;
void initialize(int n) {
for (int i = 0; i < n; i++) {
for (int j = 0; j < n; j++) {
if (j != i) {
adj[i].push_back(j);
}
}
}
}
mt19937 gen(69420);
uniform_int_distribution<int> dist(0, 1);
int hasEdge(int u, int v) {
t++;
adj[u].erase(find(adj[u].begin(), adj[u].end(), v));
adj[v].erase(find(adj[v].begin(), adj[v].end(), u));
int pt = 0;
int sz = 1;
if (dist(gen)) {
swap(u, v);
}
q[pt] = u;
flag[u] = t;
while (pt < sz) {
int x = q[pt++];
for (auto y: adj[x]) {
if (y == v) {
return 0;
}
if (flag[y] != t) {
flag[y] = t;
q[sz++] = y;
}
}
}
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... |