結果
問題 | No.1436 Rgaph |
ユーザー | SSRS |
提出日時 | 2021-03-19 22:50:46 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,407 bytes |
コンパイル時間 | 1,879 ms |
コンパイル使用メモリ | 177,880 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-19 00:13:40 |
合計ジャッジ時間 | 6,419 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | AC | 2 ms
5,248 KB |
testcase_04 | AC | 2 ms
5,248 KB |
testcase_05 | WA | - |
testcase_06 | AC | 3 ms
5,248 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | AC | 3 ms
5,248 KB |
testcase_12 | AC | 3 ms
5,248 KB |
testcase_13 | AC | 3 ms
5,248 KB |
testcase_14 | AC | 3 ms
5,248 KB |
testcase_15 | AC | 3 ms
5,248 KB |
testcase_16 | AC | 3 ms
5,248 KB |
testcase_17 | AC | 4 ms
5,248 KB |
testcase_18 | AC | 3 ms
5,248 KB |
testcase_19 | AC | 4 ms
5,248 KB |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | RE | - |
testcase_28 | WA | - |
testcase_29 | RE | - |
ソースコード
#include <bits/stdc++.h> using namespace std; int main(){ int N, M; cin >> N >> M; vector<vector<int>> E1(N), E2(N); vector<vector<int>> E(N); for (int i = 0; i < M; i++){ int A, B; cin >> A >> B; A--; B--; E1[A].push_back(B); E2[B].push_back(A); E[A].push_back(B); E[B].push_back(A); } vector<bool> used1(N, false); used1[0] = true; queue<int> Q1; Q1.push(0); while (!Q1.empty()){ int v = Q1.front(); Q1.pop(); for (int w : E1[v]){ if (!used1[w]){ used1[w] = true; Q1.push(w); } } } vector<bool> used2(N, false); used2[0] = true; queue<int> Q2; Q2.push(0); while (!Q2.empty()){ int v = Q2.front(); Q2.pop(); for (int w : E2[v]){ if (!used2[w]){ used2[w] = true; Q2.push(w); } } } bool ok = false; vector<int> c(N, -1); c[0] = 0; queue<int> Q; Q.push(0); while (!Q.empty()){ int v = Q.front(); Q.pop(); for (int w : E[v]){ if (c[w] == -1){ c[w] = 1 - c[v]; Q.push(w); } else if (c[v] == c[w]){ ok = true; } } } for (int i = 0; i < N; i++){ if (!used1[i]){ ok = false; } } for (int i = 0; i < N; i++){ if (!used2[i]){ ok = false; } } if (M <= N + 1){ ok = false; } if (!ok){ cout << -1 << endl; } else { assert(false); } }