結果
問題 | No.416 旅行会社 |
ユーザー | konsin_tokage |
提出日時 | 2018-06-04 23:28:21 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 549 bytes |
コンパイル時間 | 785 ms |
コンパイル使用メモリ | 81,664 KB |
実行使用メモリ | 143,128 KB |
最終ジャッジ日時 | 2024-06-30 09:51:01 |
合計ジャッジ時間 | 11,832 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 366 ms
134,512 KB |
testcase_01 | WA | - |
testcase_02 | AC | 39 ms
51,968 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | AC | 488 ms
134,276 KB |
testcase_11 | WA | - |
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 | - |
ソースコード
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) bfs(i, q) bfs(j, q) q -= 1 for i in r[2:]: print(i)