結果

問題 No.92 逃走経路
ユーザー nbisconbisco
提出日時 2017-01-11 23:59:33
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 367 ms / 5,000 ms
コード長 664 bytes
コンパイル時間 280 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 11,008 KB
最終ジャッジ日時 2024-06-01 06:15:37
合計ジャッジ時間 3,415 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
10,880 KB
testcase_01 AC 31 ms
10,624 KB
testcase_02 AC 30 ms
10,624 KB
testcase_03 AC 30 ms
10,624 KB
testcase_04 AC 30 ms
10,752 KB
testcase_05 AC 367 ms
10,880 KB
testcase_06 AC 37 ms
10,880 KB
testcase_07 AC 37 ms
11,008 KB
testcase_08 AC 31 ms
10,624 KB
testcase_09 AC 49 ms
10,624 KB
testcase_10 AC 357 ms
10,752 KB
testcase_11 AC 321 ms
10,880 KB
testcase_12 AC 349 ms
10,752 KB
testcase_13 AC 43 ms
10,752 KB
testcase_14 AC 50 ms
10,752 KB
testcase_15 AC 54 ms
10,752 KB
testcase_16 AC 50 ms
10,752 KB
testcase_17 AC 52 ms
11,008 KB
testcase_18 AC 45 ms
11,008 KB
testcase_19 AC 40 ms
11,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M, K = [int(i) for i in input().strip().split(" ")]

fee = {}
for i in range(M):
    a, b, c = [int(i) for i in input().strip().split(" ")]
    if fee.get(c):
        fee[c].append((a,b))
    else:
        fee[c] = [(a,b)]

D = [int(i) for i in input().strip().split(" ")]

cur = set([])
towns = fee[D[0]]
for town in towns:
    cur.add(town[0])
    cur.add(town[1])

next = set([])
for d in D[1:]:
    towns = fee[d]
    for town in towns:
        if town[0] in cur:
            next.add(town[1])
        if town[1] in cur:
            next.add(town[0])
    cur = next
    next = set([])

cur = list(cur)
print(len(cur))
print(" ".join([str(i) for i in cur]))
0