結果

問題 No.92 逃走経路
ユーザー Navier_BoltzmannNavier_Boltzmann
提出日時 2023-01-14 17:40:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 78 ms / 5,000 ms
コード長 800 bytes
コンパイル時間 341 ms
コンパイル使用メモリ 82,192 KB
実行使用メモリ 71,168 KB
最終ジャッジ日時 2024-06-07 18:40:08
合計ジャッジ時間 2,707 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 76 ms
69,376 KB
testcase_01 AC 48 ms
55,424 KB
testcase_02 AC 47 ms
55,040 KB
testcase_03 AC 50 ms
55,168 KB
testcase_04 AC 48 ms
55,424 KB
testcase_05 AC 72 ms
64,896 KB
testcase_06 AC 66 ms
65,152 KB
testcase_07 AC 66 ms
66,176 KB
testcase_08 AC 57 ms
64,792 KB
testcase_09 AC 59 ms
65,280 KB
testcase_10 AC 78 ms
66,432 KB
testcase_11 AC 74 ms
67,200 KB
testcase_12 AC 75 ms
68,224 KB
testcase_13 AC 64 ms
67,328 KB
testcase_14 AC 66 ms
67,840 KB
testcase_15 AC 70 ms
68,736 KB
testcase_16 AC 74 ms
70,016 KB
testcase_17 AC 75 ms
71,168 KB
testcase_18 AC 72 ms
69,504 KB
testcase_19 AC 74 ms
69,632 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import *
from itertools import *
from heapq import *
from functools import *
import sys,math
input = sys.stdin.readline

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

cnt = [[False]*(K+1) for _ in range(N)]
for i in range(N):
    cnt[i][0]=True

for i in range(K):
    
    d = D[i]
    
    for j in range(N):
        
        if cnt[j][i]:
            
            for ix,ic in e[j]:
                
                if ic==d:
                    
                    cnt[ix][i+1] = True
                    
ans = []
for i in range(N):
    if cnt[i][-1]:
        ans.append(i+1)
print(len(ans))
print(*ans)
0