結果
問題 | No.416 旅行会社 |
ユーザー | konsin_tokage |
提出日時 | 2018-06-05 07:24:12 |
言語 | PyPy2 (7.3.15) |
結果 |
RE
|
実行時間 | - |
コード長 | 582 bytes |
コンパイル時間 | 1,718 ms |
コンパイル使用メモリ | 76,588 KB |
実行使用メモリ | 75,940 KB |
最終ジャッジ日時 | 2024-06-30 09:52:44 |
合計ジャッジ時間 | 4,606 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
ソースコード
n, m, q = map(int, input().split()) g = [set() for _ in range(n+1)] for _ in range(m): a, b = map(int, input().split()) g[a].add(b) g[b].add(a) e = [] for _ in range(q): a, b = map(int, input().split()) g[a].remove(b) g[b].remove(a) e.append((a,b)) r = [0]*(n+1) def bfs(i, x): q = [i] for j in q: if r[j] != 0: continue r[j] = x q.extend(g[j]) bfs(1, -1) for i, j in e[::-1]: g[i].add(j) g[j].add(i) if not r[i]==r[j]==0: bfs(i, q) bfs(j, q) q -= 1 for i in r[2:]: print(i)