이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "game.h"
#include <bits/stdc++.h>
using namespace std;
vector<bitset<1500>> friends(1500);
int N;
void initialize(int n) {
N = n;
for(int i = 0; i < 1500; i ++)
for(int j = 0; j < 1500; j ++)
friends[i][j] = 0;
for(int i = 0; i < n; i ++)
for(int j = 0; j < n; j ++)
friends[i][j] = 1;
}
int hasEdge(int u, int v) {
friends[u][v] = 0;
friends[v][u] = 0;
bitset<1500> res = friends[u] & friends[v];
if(res.count())
return 0;
friends[u][v] = 1;
friends[v][u] = 1;
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... |