# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
577568 | Mazaalai | 게임 (IOI14_game) | C++17 | 1 ms | 340 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "game.h"
#include <bits/stdc++.h>
#define lb lower_bound
#define LINE "------------\n"
using namespace std;
using PII = pair <int, int>;
const int N = 1500;
// bool path[N][N];
set <int> vals[N];
int n;
void initialize(int _n) {
n = _n;
for (int i = 0; i < n; i++)
for (int j = i+1; j < n; j++) {
vals[i].insert(j);
vals[j].insert(i);
// path[i][j] = path[j][i] = 1;
}
}
int hasEdge(int u, int v) {
// path[u][v] = path[v][u] = 0;
vals[u].erase(v); vals[v].erase(u);
bool vis[n]; memset(vis, 0, sizeof(vis));
queue <int> bfs;
if (vals[u].size() > vals[v].size()) swap(u, v);
bfs.push(u); vis[u] = 1;
int reach = 0;
while(!bfs.empty()) {
reach++;
int x = bfs.front(); bfs.pop();
// for (int i = 0; i < n; i++) {
// if (path[x][i] && !vis[i]) {
// bfs.push(i); vis[i] = 1;
// }
// }
for (auto el : vals[x]) {
if (!vis[el]) {
bfs.push(el); vis[el] = 1;
}
}
}
// if (reach != n) path[u][v] = path[v][u] = 1;
if (reach != n) vals[u].insert(v); vals[v].insert(u);
return reach != n;
}
컴파일 시 표준 에러 (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... |