結果

問題 No.92 逃走経路
ユーザー takakintakakin
提出日時 2020-05-03 20:11:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 3,010 ms / 5,000 ms
コード長 538 bytes
コンパイル時間 340 ms
コンパイル使用メモリ 82,152 KB
実行使用メモリ 76,184 KB
最終ジャッジ日時 2024-06-22 17:39:56
合計ジャッジ時間 12,154 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 701 ms
75,776 KB
testcase_01 AC 39 ms
51,840 KB
testcase_02 AC 40 ms
52,096 KB
testcase_03 AC 40 ms
52,096 KB
testcase_04 AC 39 ms
51,968 KB
testcase_05 AC 90 ms
63,232 KB
testcase_06 AC 63 ms
62,720 KB
testcase_07 AC 63 ms
62,848 KB
testcase_08 AC 51 ms
62,592 KB
testcase_09 AC 64 ms
76,160 KB
testcase_10 AC 1,626 ms
76,184 KB
testcase_11 AC 1,057 ms
75,660 KB
testcase_12 AC 3,010 ms
75,648 KB
testcase_13 AC 66 ms
75,904 KB
testcase_14 AC 417 ms
75,648 KB
testcase_15 AC 641 ms
75,348 KB
testcase_16 AC 493 ms
75,520 KB
testcase_17 AC 958 ms
75,600 KB
testcase_18 AC 547 ms
76,032 KB
testcase_19 AC 151 ms
75,520 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input=lambda: sys.stdin.readline().rstrip()
n,m,k=map(int,input().split())
edge = [[] for i in range(n)]
for i in range(m):
  a,b,c=map(int,input().split())
  edge[a-1].append([c,b-1])
  edge[b-1].append([c,a-1])
D=[int(i) for i in input().split()][::-1]
Ans=[]
for i in range(n):
  S=[i]
  for j in range(k):
    SS=set()
    for s in S:
      for c,g in edge[s]:
        if c==D[j]:
          SS.add(g)
    S=list(SS)
    if not S:
      break
    else:
      continue
  else:
    Ans.append(i+1)
print(len(Ans))
print(*Ans)
0