# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
341515 | 2020-12-29T21:54:09 Z | FlashGamezzz | 늑대인간 (IOI18_werewolf) | C++11 | 354 ms | 524292 KB |
#include <iostream> #include <cstdlib> #include <cstdio> #include <fstream> #include <algorithm> #include <unordered_set> #include <vector> #include <utility> #include "werewolf.h" using namespace std; vector<int> adj[3000]; bool r1[3000], r2[3000]; int cr, cl; void dfs1(int i){ if (i >= cl){ r1[i] = true; for (int a : adj[i]){ if (a >= cl && !r1[a]){ dfs1(a); } } } } void dfs2(int i){ if (i <= cr){ r1[i] = true; for (int a : adj[i]){ if (a <= cr && !r2[a]){ dfs2(a); } } } } vector<int> check_validity(int N, vector<int> X, vector<int> Y, vector<int> S, vector<int> E, vector<int> L, vector<int> R) { int Q = S.size(); vector<int> A(Q); for (int i = 0; i < Q; ++i) { A[i] = 0; } for (int i = 0; i < X.size(); i++){ adj[X[i]].push_back(Y[i]); adj[Y[i]].push_back(X[i]); } for (int i = 0; i < Q; i++) { for (int j = 0; j < N; j++){ r1[j] = false; r2[j] = false; } cr = R[i]; cl = L[i]; dfs1(S[i]); dfs2(E[i]); for (int j = L[i]; j <= R[i]; j++){ if (r1[j] && r2[j]){ A[i] = 1; break; } } } return A; }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Runtime error | 354 ms | 524292 KB | Execution killed with signal 9 (could be triggered by violating memory limits) |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Runtime error | 354 ms | 524292 KB | Execution killed with signal 9 (could be triggered by violating memory limits) |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Runtime error | 171 ms | 21284 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Runtime error | 354 ms | 524292 KB | Execution killed with signal 9 (could be triggered by violating memory limits) |
2 | Halted | 0 ms | 0 KB | - |