結果

問題 No.416 旅行会社
ユーザー ヒッキープログラミングするスレヒッキープログラミングするスレ
提出日時 2016-08-28 23:18:32
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 2,539 ms / 4,000 ms
コード長 898 bytes
コンパイル時間 169 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 54,400 KB
最終ジャッジ日時 2024-12-14 20:12:42
合計ジャッジ時間 23,573 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 965 ms
39,936 KB
testcase_01 AC 27 ms
10,752 KB
testcase_02 AC 28 ms
10,880 KB
testcase_03 AC 28 ms
10,880 KB
testcase_04 AC 29 ms
10,880 KB
testcase_05 AC 28 ms
10,880 KB
testcase_06 AC 27 ms
10,880 KB
testcase_07 AC 34 ms
10,880 KB
testcase_08 AC 54 ms
11,392 KB
testcase_09 AC 131 ms
13,440 KB
testcase_10 AC 1,102 ms
39,808 KB
testcase_11 AC 1,088 ms
36,864 KB
testcase_12 AC 1,107 ms
36,992 KB
testcase_13 AC 959 ms
36,992 KB
testcase_14 AC 2,456 ms
54,400 KB
testcase_15 AC 2,539 ms
53,888 KB
testcase_16 AC 2,473 ms
53,620 KB
testcase_17 AC 2,451 ms
53,888 KB
testcase_18 AC 2,474 ms
53,888 KB
testcase_19 AC 1,448 ms
40,064 KB
testcase_20 AC 1,429 ms
40,448 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