結果

問題 No.92 逃走経路
ユーザー DialBirdDialBird
提出日時 2017-03-18 19:21:29
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 519 bytes
コンパイル時間 114 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 11,264 KB
最終ジャッジ日時 2024-07-04 19:19:39
合計ジャッジ時間 1,810 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
11,264 KB
testcase_01 AC 29 ms
10,624 KB
testcase_02 AC 29 ms
10,624 KB
testcase_03 AC 29 ms
10,624 KB
testcase_04 AC 28 ms
10,624 KB
testcase_05 AC 34 ms
10,624 KB
testcase_06 AC 37 ms
11,264 KB
testcase_07 AC 35 ms
11,264 KB
testcase_08 AC 30 ms
10,624 KB
testcase_09 AC 62 ms
10,880 KB
testcase_10 AC 65 ms
10,752 KB
testcase_11 AC 74 ms
10,752 KB
testcase_12 AC 65 ms
10,880 KB
testcase_13 AC 49 ms
10,880 KB
testcase_14 AC 52 ms
10,880 KB
testcase_15 AC 57 ms
10,880 KB
testcase_16 WA -
testcase_17 AC 52 ms
11,008 KB
testcase_18 AC 45 ms
11,008 KB
testcase_19 AC 40 ms
11,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict

N,M,K = [int(i) for i in input().split()]
G = [defaultdict(set) for i in range(N)]

for i in range(M):
    a,b,c = map(int, input().split())
    a -= 1
    b -= 1
    G[a][c].add(b)
    G[b][c].add(a)

candidates = set(range(N))
for k in map(int, input().split()):
    new_candidates = set([])
    for i in candidates:
        if k in G[i]:
            new_candidates |= G[i][k]
    candidates = new_candidates

print(len(candidates))
print(" ".join([str(i+1) for i in candidates]))
0