結果

問題 No.416 旅行会社
ユーザー konsin_tokagekonsin_tokage
提出日時 2018-06-05 08:05:03
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 1,004 ms / 4,000 ms
コード長 683 bytes
コンパイル時間 781 ms
コンパイル使用メモリ 76,708 KB
実行使用メモリ 143,300 KB
最終ジャッジ日時 2024-05-08 15:36:10
合計ジャッジ時間 13,541 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 399 ms
127,232 KB
testcase_01 AC 87 ms
77,688 KB
testcase_02 AC 88 ms
77,608 KB
testcase_03 AC 88 ms
77,948 KB
testcase_04 AC 87 ms
77,752 KB
testcase_05 AC 87 ms
77,568 KB
testcase_06 AC 89 ms
77,860 KB
testcase_07 AC 108 ms
79,744 KB
testcase_08 AC 165 ms
82,488 KB
testcase_09 AC 218 ms
85,888 KB
testcase_10 AC 497 ms
126,620 KB
testcase_11 AC 461 ms
128,384 KB
testcase_12 AC 467 ms
128,288 KB
testcase_13 AC 352 ms
128,040 KB
testcase_14 AC 1,004 ms
141,432 KB
testcase_15 AC 975 ms
142,540 KB
testcase_16 AC 946 ms
143,300 KB
testcase_17 AC 980 ms
143,188 KB
testcase_18 AC 996 ms
142,424 KB
testcase_19 AC 730 ms
129,184 KB
testcase_20 AC 755 ms
129,128 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import *
n, m, q = map(int, raw_input().split())
g = [set() for _ in xrange(n+1)]
for _ in xrange(m):
    a, b = map(int, raw_input().split())
    g[a].add(b)
    g[b].add(a)
e = []
for _ in xrange(q):
    a, b = map(int, raw_input().split())
    g[a].remove(b)
    g[b].remove(a)
    e.append((a,b))
g = [list(s) for s in g]
r = [0]*(n+1)
def bfs(i, x):
    q = deque([i])
    while q:
        j = q.popleft()
        if r[j] != 0:
            continue
        r[j] = x
        q.extend(g[j])
bfs(1, -1)
for i, j in e[::-1]:
    g[i].append(j)
    g[j].append(i)
    if not r[i]==r[j]==0:
        bfs(i, q)
        bfs(j, q)
    q -= 1
for i in r[2:]:
    print(i)
0