結果

問題 No.416 旅行会社
ユーザー tktk_snsntktk_snsn
提出日時 2020-12-14 17:10:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,555 ms / 4,000 ms
コード長 1,044 bytes
コンパイル時間 362 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 152,172 KB
最終ジャッジ日時 2024-12-14 21:01:57
合計ジャッジ時間 15,372 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 342 ms
113,408 KB
testcase_01 AC 43 ms
53,888 KB
testcase_02 AC 43 ms
53,888 KB
testcase_03 AC 43 ms
54,272 KB
testcase_04 AC 44 ms
54,272 KB
testcase_05 AC 45 ms
54,400 KB
testcase_06 AC 48 ms
55,424 KB
testcase_07 AC 65 ms
67,456 KB
testcase_08 AC 140 ms
78,652 KB
testcase_09 AC 248 ms
82,472 KB
testcase_10 AC 602 ms
113,264 KB
testcase_11 AC 613 ms
119,180 KB
testcase_12 AC 628 ms
122,632 KB
testcase_13 AC 351 ms
119,288 KB
testcase_14 AC 1,460 ms
148,844 KB
testcase_15 AC 1,555 ms
151,364 KB
testcase_16 AC 1,487 ms
152,172 KB
testcase_17 AC 1,505 ms
149,472 KB
testcase_18 AC 1,533 ms
150,096 KB
testcase_19 AC 1,204 ms
134,088 KB
testcase_20 AC 1,138 ms
132,864 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict

N, M, Q = map(int, input().split())
bridge = defaultdict(int)
for _ in range(M):
    a, b = map(int, input().split())
    bridge[(a, b)] = Q + 1
for i in range(1, Q + 1):
    c, d = map(int, input().split())
    bridge[(c, d)] = i


data = [[i] for i in range(N)]
ans = [0] * N

def find(x):
    if isinstance(data[x], list):
        return x
    data[x] = find(data[x])
    return data[x]

def merge(x, y, time):
    x = find(x)
    y = find(y)
    if x == y:
        return
    if x > y:
        x, y = y, x
    if x == 0:
        while data[y]:
            i = data[y].pop()
            ans[i] = time
            data[x].append(i)
        data[y] = 0
        return
    if len(data[x]) > len(data[y]):
        x, y = y, x
    while data[x]:
        data[y].append(data[x].pop())
    data[x] = y
   

query = [(n, a, b) for (a, b), n in bridge.items()]
query.sort(reverse=True)
for n, a, b in query:
    merge(a - 1, b - 1, n)

for a in ans[1:]:
    if a > Q:
        print(-1)
    else:
        print(a)
0