結果

問題 No.92 逃走経路
ユーザー KazunKazun
提出日時 2021-02-07 19:36:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 114 ms / 5,000 ms
コード長 385 bytes
コンパイル時間 264 ms
コンパイル使用メモリ 82,444 KB
実行使用メモリ 76,032 KB
最終ジャッジ日時 2024-07-04 12:34:49
合計ジャッジ時間 2,725 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 75 ms
74,112 KB
testcase_01 AC 41 ms
53,504 KB
testcase_02 AC 41 ms
53,632 KB
testcase_03 AC 42 ms
53,504 KB
testcase_04 AC 42 ms
53,684 KB
testcase_05 AC 104 ms
66,688 KB
testcase_06 AC 64 ms
65,024 KB
testcase_07 AC 61 ms
64,896 KB
testcase_08 AC 45 ms
54,656 KB
testcase_09 AC 56 ms
72,576 KB
testcase_10 AC 108 ms
70,400 KB
testcase_11 AC 104 ms
71,552 KB
testcase_12 AC 114 ms
76,032 KB
testcase_13 AC 53 ms
65,408 KB
testcase_14 AC 64 ms
69,376 KB
testcase_15 AC 66 ms
71,040 KB
testcase_16 AC 69 ms
70,784 KB
testcase_17 AC 75 ms
72,960 KB
testcase_18 AC 72 ms
71,552 KB
testcase_19 AC 72 ms
70,400 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict

N,M,K=map(int,input().split())
E=defaultdict(list)
for _ in range(M):
    a,b,c=map(int,input().split())
    E[c].append((a,b))
D=map(int,input().split())

S=set(range(1,N+1))
for d in D:
    T=set()
    for u,v in E[d]:
        if u in S:
            T.add(v)
        if v in S:
            T.add(u)
    S=T.copy()

print(len(S))
print(*sorted(S))
0