結果

問題 No.416 旅行会社
ユーザー konsin_tokagekonsin_tokage
提出日時 2018-06-05 08:20:53
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 1,135 ms / 4,000 ms
コード長 596 bytes
コンパイル時間 198 ms
コンパイル使用メモリ 76,956 KB
実行使用メモリ 150,512 KB
最終ジャッジ日時 2024-05-08 15:37:47
合計ジャッジ時間 12,518 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 406 ms
137,828 KB
testcase_01 AC 78 ms
75,368 KB
testcase_02 AC 80 ms
75,904 KB
testcase_03 AC 78 ms
75,392 KB
testcase_04 AC 78 ms
75,392 KB
testcase_05 AC 77 ms
75,520 KB
testcase_06 AC 79 ms
75,904 KB
testcase_07 AC 96 ms
78,592 KB
testcase_08 AC 156 ms
80,720 KB
testcase_09 AC 225 ms
84,992 KB
testcase_10 AC 536 ms
138,440 KB
testcase_11 AC 495 ms
137,924 KB
testcase_12 AC 492 ms
139,344 KB
testcase_13 AC 376 ms
141,412 KB
testcase_14 AC 1,127 ms
149,792 KB
testcase_15 AC 1,135 ms
149,884 KB
testcase_16 AC 1,093 ms
150,512 KB
testcase_17 AC 1,121 ms
150,024 KB
testcase_18 AC 1,099 ms
150,020 KB
testcase_19 AC 760 ms
120,912 KB
testcase_20 AC 793 ms
121,408 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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))
r = [0]*(n+1)
def dfs(i, x):
    s = [i]
    while s:
        j = s.pop()
        if r[j] == 0:
            r[j] = x
            s += g[j]
dfs(1, -1)
for i, j in e[::-1]:
    g[i].add(j)
    g[j].add(i)
    if not r[i]==r[j]==0:
        dfs(i, q)
        dfs(j, q)
    q -= 1
for i in r[2:]:
    print(i)
0