結果
問題 | No.1477 Lamps on Graph |
ユーザー | se1ka2 |
提出日時 | 2021-04-16 20:15:41 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,368 bytes |
コンパイル時間 | 858 ms |
コンパイル使用メモリ | 80,932 KB |
実行使用メモリ | 700,308 KB |
最終ジャッジ日時 | 2024-07-02 22:11:35 |
合計ジャッジ時間 | 8,960 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
13,756 KB |
testcase_01 | AC | 2 ms
6,944 KB |
testcase_02 | AC | 2 ms
6,944 KB |
testcase_03 | WA | - |
testcase_04 | AC | 2 ms
6,940 KB |
testcase_05 | WA | - |
testcase_06 | AC | 2 ms
6,940 KB |
testcase_07 | AC | 2 ms
6,940 KB |
testcase_08 | AC | 2 ms
6,944 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | AC | 2 ms
6,940 KB |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | MLE | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
ソースコード
#include <iostream> #include <queue> using namespace std; struct Graph { int n; std::vector<std::vector<int>> g; Graph(){} Graph(int n) : n(n){ g.resize(n); } void add_edge(int from, int to){ g[from].push_back(to); } }; int main() { int n, m; cin >> n >> m; int a[100005]; for(int i = 0; i < n; i++) cin >> a[i]; Graph g(n), r(n); for(int i = 0; i < m; i++){ int u, v; cin >> u >> v; u--; v--; if(a[u] < a[v]){ g.add_edge(u, v); r.add_edge(v, u); } if(a[u] > a[v]){ g.add_edge(v, u); r.add_edge(u, v); } } int k; cin >> k; bool b[100005]{0}; for(int i = 0; i < k; i++){ int u; cin >> u; u--; b[u] = true; } bool c[100005]{0}; queue<int> que; for(int u = 0; u < n; u++){ if(r.g[u].size() == 0){ c[u] = true; que.push(u); } } vector<int> ans; while(que.size()){ int u = que.front(); que.pop(); if(b[u]) ans.push_back(u); for(int v : g.g[u]){ if(b[u]) b[v] = !b[v]; if(!c[v]) que.push(v); } } cout << (int)ans.size() << endl; for(int u : ans) cout << u + 1 << endl; cout << endl; }