結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 334 ms
113,140 KB
testcase_01 AC 43 ms
55,568 KB
testcase_02 AC 41 ms
55,532 KB
testcase_03 AC 42 ms
56,220 KB
testcase_04 AC 44 ms
54,832 KB
testcase_05 AC 44 ms
55,380 KB
testcase_06 AC 46 ms
56,428 KB
testcase_07 AC 64 ms
68,156 KB
testcase_08 AC 133 ms
78,548 KB
testcase_09 AC 243 ms
82,596 KB
testcase_10 AC 593 ms
113,676 KB
testcase_11 AC 595 ms
119,320 KB
testcase_12 AC 611 ms
122,256 KB
testcase_13 AC 340 ms
119,168 KB
testcase_14 AC 1,409 ms
148,968 KB
testcase_15 AC 1,442 ms
151,764 KB
testcase_16 AC 1,402 ms
152,260 KB
testcase_17 AC 1,440 ms
149,644 KB
testcase_18 AC 1,451 ms
149,976 KB
testcase_19 AC 1,148 ms
134,508 KB
testcase_20 AC 1,123 ms
133,068 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