# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
572648 | 2022-06-04T22:37:19 Z | Plurm | 게임 (APIO22_game) | C++17 | 1 ms | 464 KB |
#include "game.h" #include <bits/stdc++.h> using namespace std; vector<int> g[1024]; int n, k; void init(int n, int k) { ::n = n; ::k = k; } int color[1024]; bool dfs(int i) { if (color[i] == 1) return false; color[i] = 1; for (int j : g[i]) { dfs(j); } color[i] = 2; } int add_teleporter(int u, int v) { memset(color, 0, sizeof(color)); bool ok = true; for (int i = 0; i < k; i++) { ok &= dfs(i); } return ok ? 0 : 1; }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Runtime error | 1 ms | 464 KB | Execution killed with signal 11 |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Runtime error | 1 ms | 464 KB | Execution killed with signal 11 |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Runtime error | 1 ms | 464 KB | Execution killed with signal 11 |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Runtime error | 1 ms | 464 KB | Execution killed with signal 11 |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Runtime error | 1 ms | 464 KB | Execution killed with signal 11 |
2 | Halted | 0 ms | 0 KB | - |