結果

問題 No.416 旅行会社
ユーザー convexineqconvexineq
提出日時 2021-02-03 00:42:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 639 ms / 4,000 ms
コード長 707 bytes
コンパイル時間 232 ms
コンパイル使用メモリ 82,532 KB
実行使用メモリ 155,852 KB
最終ジャッジ日時 2024-05-08 16:03:05
合計ジャッジ時間 8,178 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 321 ms
120,956 KB
testcase_01 AC 39 ms
53,068 KB
testcase_02 AC 39 ms
52,756 KB
testcase_03 AC 39 ms
53,936 KB
testcase_04 AC 38 ms
52,996 KB
testcase_05 AC 40 ms
54,404 KB
testcase_06 AC 42 ms
53,888 KB
testcase_07 AC 60 ms
67,056 KB
testcase_08 AC 113 ms
77,784 KB
testcase_09 AC 157 ms
81,316 KB
testcase_10 AC 331 ms
120,572 KB
testcase_11 AC 329 ms
119,440 KB
testcase_12 AC 331 ms
121,544 KB
testcase_13 AC 331 ms
119,564 KB
testcase_14 AC 619 ms
155,368 KB
testcase_15 AC 626 ms
155,532 KB
testcase_16 AC 614 ms
155,476 KB
testcase_17 AC 639 ms
155,852 KB
testcase_18 AC 637 ms
155,464 KB
testcase_19 AC 478 ms
126,492 KB
testcase_20 AC 474 ms
126,656 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