# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
835098 | _martynas | 게임 (IOI14_game) | C++11 | 1086 ms | 532 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "game.h"
#include <bits/stdc++.h>
using namespace std;
const int mxn = 1505;
int n;
bitset<mxn> adj[mxn];
void initialize(int N) {
n = N;
for(int i = 0; i < N; i++) for(int j = 0; j < N; j++) {
if(i != j) adj[i][j] = 1;
}
}
bitset<mxn> visited;
// check if it can be connected
void dfs_could(int u) {
visited[u] = true;
for(int v = 0; v < n; v++) if(!visited[v]) {
if(adj[u][v]) {
dfs_could(v);
}
}
}
int hasEdge(int u, int v) {
bool resp = false;
visited.reset();
adj[u][v] = adj[v][u] = false;
dfs_could(0);
if(visited.count() != n) {
resp = true;
adj[u][v] = adj[v][u] = true;
}
return resp;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |