結果

問題 No.92 逃走経路
ユーザー H20H20
提出日時 2021-08-03 13:10:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,507 ms / 5,000 ms
コード長 512 bytes
コンパイル時間 153 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 75,904 KB
最終ジャッジ日時 2024-09-16 14:56:10
合計ジャッジ時間 10,263 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 528 ms
75,520 KB
testcase_01 AC 38 ms
51,584 KB
testcase_02 AC 35 ms
51,840 KB
testcase_03 AC 36 ms
51,712 KB
testcase_04 AC 36 ms
51,584 KB
testcase_05 AC 91 ms
65,408 KB
testcase_06 AC 66 ms
65,664 KB
testcase_07 AC 65 ms
65,408 KB
testcase_08 AC 49 ms
63,872 KB
testcase_09 AC 61 ms
75,392 KB
testcase_10 AC 1,590 ms
75,392 KB
testcase_11 AC 999 ms
75,264 KB
testcase_12 AC 2,507 ms
75,904 KB
testcase_13 AC 74 ms
75,136 KB
testcase_14 AC 352 ms
75,520 KB
testcase_15 AC 500 ms
75,776 KB
testcase_16 AC 412 ms
75,776 KB
testcase_17 AC 767 ms
75,904 KB
testcase_18 AC 469 ms
75,520 KB
testcase_19 AC 127 ms
75,520 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M,K = map(int,input().split())
L = [[] for _ in range(N+1)] 
for i in range(M):
    a,b,c = map(int,input().split())
    L[a].append((b,c))
    L[b].append((a,c))
D = list(map(int,input().split()))[::-1]
ANS = []
for i in range(1,N+1):
    S = set()
    S.add(i)
    for d in D:
        NEXT = set()
        for s in S:
            for l in L[s]:
                n,c = l
                if d==c:
                    NEXT.add(n)
        S = NEXT
    if len(S):
        ANS.append(i)
print(len(ANS))
print(*ANS)
0