結果

問題 No.416 旅行会社
ユーザー ヒッキープログラミングするスレヒッキープログラミングするスレ
提出日時 2016-08-28 23:19:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 721 ms / 4,000 ms
コード長 898 bytes
コンパイル時間 413 ms
コンパイル使用メモリ 82,576 KB
実行使用メモリ 119,184 KB
最終ジャッジ日時 2024-05-08 15:18:10
合計ジャッジ時間 8,818 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 297 ms
99,964 KB
testcase_01 AC 38 ms
52,480 KB
testcase_02 AC 38 ms
52,736 KB
testcase_03 AC 39 ms
52,864 KB
testcase_04 AC 37 ms
52,352 KB
testcase_05 AC 40 ms
53,376 KB
testcase_06 AC 41 ms
53,760 KB
testcase_07 AC 60 ms
66,304 KB
testcase_08 AC 127 ms
78,080 KB
testcase_09 AC 162 ms
80,104 KB
testcase_10 AC 379 ms
100,132 KB
testcase_11 AC 363 ms
100,016 KB
testcase_12 AC 375 ms
100,140 KB
testcase_13 AC 280 ms
100,168 KB
testcase_14 AC 718 ms
118,884 KB
testcase_15 AC 701 ms
118,900 KB
testcase_16 AC 721 ms
118,912 KB
testcase_17 AC 705 ms
119,184 KB
testcase_18 AC 707 ms
118,784 KB
testcase_19 AC 492 ms
100,720 KB
testcase_20 AC 497 ms
100,552 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def getInts():
    return list(map(int, input().split(' ')))

n, m, q = getInts()

f = [[] for _ in range(n + 1)]
e = [0] * (n + 1)

def sek(k,i):
    e[i] = k
    h = [i]
    while len(h) > 0:
        w = []
        for x in h:
            for y in f[x]:
                if e[y] == 0:
                    e[y] = k
                    w.append(y)
        h = w

        
for _ in range(m):
    a, b = getInts()
    f[a].append(b)
    f[b].append(a)

z = []

for i in range(q):
    c, d = getInts()
    f[c].remove(d)
    f[d].remove(c)
    z.append([c,d])

sek(-1, 1)
    
for i in range(q):
    c, d = z[q - i - 1]
    f[c].append(d)
    f[d].append(c)
    if e[c] == 0 and e[d] != 0:
        sek(q - i, c)
    if e[d] == 0 and e[c] != 0:
        sek(q - i, d)
        
for i in range(2, n + 1):
    if e[i] == 0:
        print(0)
    elif e[i] > q:
        print(-1)
    else:
        print(e[i])
0