結果

問題 No.416 旅行会社
ユーザー convexineqconvexineq
提出日時 2021-02-03 00:42:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 734 ms / 4,000 ms
コード長 707 bytes
コンパイル時間 429 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 155,392 KB
最終ジャッジ日時 2024-12-14 21:02:31
合計ジャッジ時間 9,609 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 367 ms
120,444 KB
testcase_01 AC 43 ms
52,224 KB
testcase_02 AC 43 ms
52,352 KB
testcase_03 AC 43 ms
51,968 KB
testcase_04 AC 43 ms
52,352 KB
testcase_05 AC 45 ms
52,736 KB
testcase_06 AC 48 ms
53,248 KB
testcase_07 AC 73 ms
65,664 KB
testcase_08 AC 136 ms
77,824 KB
testcase_09 AC 190 ms
81,280 KB
testcase_10 AC 371 ms
120,568 KB
testcase_11 AC 367 ms
119,564 KB
testcase_12 AC 384 ms
121,548 KB
testcase_13 AC 364 ms
119,176 KB
testcase_14 AC 717 ms
155,392 KB
testcase_15 AC 717 ms
155,136 KB
testcase_16 AC 727 ms
155,264 KB
testcase_17 AC 711 ms
155,264 KB
testcase_18 AC 734 ms
155,264 KB
testcase_19 AC 533 ms
126,592 KB
testcase_20 AC 532 ms
126,464 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m,q = map(int,input().split())
ab = [list(map(int,input().split())) for _ in range(m)]
cd = [list(map(int,input().split())) for _ in range(q)]
M = 2**20
dic = {c*M+d:i for i,(c,d) in enumerate(cd)}
ans = [0]*(n+1)
lst = [[i] for i in range(n+1)]

def merge(a,b,v):
    a, b = gp[a], gp[b]
    if a == b: return 0
    if a == gp[1]:
        for i in lst[b]: ans[i] = v
    if b == gp[1]:
        for i in lst[a]: ans[i] = v
    if len(lst[a]) > len(lst[b]):
        a,b = b,a
    for x in lst[a]:
        gp[x] = b
    lst[b] += lst[a]
    return 1

gp = list(range(n+1))
for a,b in ab:
    if a*M+b not in dic:
        merge(a,b,-1)
for i in range(q)[::-1]:
    merge(*cd[i],i+1)

print(*ans[2:],sep="\n")
0