結果

問題 No.92 逃走経路
ユーザー tnodinotnodino
提出日時 2022-03-01 05:52:33
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 405 ms / 5,000 ms
コード長 586 bytes
コンパイル時間 77 ms
コンパイル使用メモリ 12,928 KB
実行使用メモリ 11,136 KB
最終ジャッジ日時 2024-07-07 08:40:44
合計ジャッジ時間 4,360 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 178 ms
11,008 KB
testcase_01 AC 26 ms
10,752 KB
testcase_02 AC 26 ms
10,624 KB
testcase_03 AC 27 ms
10,752 KB
testcase_04 AC 27 ms
10,752 KB
testcase_05 AC 405 ms
10,880 KB
testcase_06 AC 271 ms
11,008 KB
testcase_07 AC 273 ms
11,008 KB
testcase_08 AC 29 ms
10,880 KB
testcase_09 AC 61 ms
10,624 KB
testcase_10 AC 399 ms
10,752 KB
testcase_11 AC 369 ms
10,752 KB
testcase_12 AC 389 ms
10,880 KB
testcase_13 AC 46 ms
10,880 KB
testcase_14 AC 62 ms
10,880 KB
testcase_15 AC 99 ms
10,880 KB
testcase_16 AC 104 ms
11,136 KB
testcase_17 AC 161 ms
11,136 KB
testcase_18 AC 182 ms
11,136 KB
testcase_19 AC 188 ms
11,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
N,M,K = map(int,input().split())
G = [[] for _ in range(N)]
for _ in range(M):
    a,b,c = map(int,input().split())
    a -= 1
    b -= 1
    G[a].append((b, c))
    G[b].append((a, c))
d = list(map(int,input().split()))
S = set()
for pos in range(N):
    for nxt,c in G[pos]:
        if c == d[0]:
            S.add(nxt)
S = list(S)
for i in range(1,K):
    T = set()
    for pos in S:
        for nxt,c in G[pos]:
            if c == d[i]:
                T.add(nxt)
    S = list(T)
S.sort()
N = len(S)
print(N)
print(*[S[i] + 1 for i in range(N)])
0