結果

問題 No.416 旅行会社
ユーザー konsin_tokagekonsin_tokage
提出日時 2018-06-04 20:23:40
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 793 bytes
コンパイル時間 95 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 91,712 KB
最終ジャッジ日時 2024-06-30 09:46:16
合計ジャッジ時間 23,750 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 993 ms
55,632 KB
testcase_01 AC 30 ms
10,880 KB
testcase_02 AC 30 ms
10,880 KB
testcase_03 AC 30 ms
11,008 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 1,028 ms
55,632 KB
testcase_11 AC 1,005 ms
55,636 KB
testcase_12 AC 1,022 ms
55,636 KB
testcase_13 AC 975 ms
55,760 KB
testcase_14 AC 2,057 ms
90,944 KB
testcase_15 AC 2,099 ms
90,948 KB
testcase_16 AC 2,074 ms
91,712 KB
testcase_17 AC 2,074 ms
91,076 KB
testcase_18 AC 2,191 ms
90,944 KB
testcase_19 WA -
testcase_20 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m, q = map(int, input().split())
es = [tuple(map(int, input().split())) for _ in range(m)]
qs = [tuple(map(int, input().split())) for _ in range(q)]
vs = [[i] for i in range(n+1)]
def find(i):
    if vs[i][0] == i:
        return i
    j = find(vs[i][0])
    vs[i] = vs[j]
    return j
def union(i, j):
    if vs[i] is vs[j]:
        return
    if len(vs[i]) < len(vs[j]):
        i, j = j, i
    vs[i] += vs[j]
    vs[j] = vs[i]
s = set(qs)
for i, j in es:
    if (i,j) not in s:
        union(find(i), find(j))
res = [-1]*(n+1)
for i, j in qs[::-1]:
    q -= 1
    i = find(i)
    j = find(j)
    if i == j:
        continue
    k = find(1)
    if j == k:
        i, j = j, i
    if i == k:
        for v in vs[j]:
            res[v] = q + 1
    union(i, j)
for i in res[2:]:
    print(i)
0