結果

問題 No.92 逃走経路
ユーザー ntudantuda
提出日時 2024-01-05 23:01:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 90 ms / 5,000 ms
コード長 592 bytes
コンパイル時間 154 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 76,172 KB
最終ジャッジ日時 2024-09-27 19:10:47
合計ジャッジ時間 2,049 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 74 ms
74,084 KB
testcase_01 AC 35 ms
53,484 KB
testcase_02 AC 33 ms
52,348 KB
testcase_03 AC 33 ms
52,336 KB
testcase_04 AC 33 ms
52,736 KB
testcase_05 AC 79 ms
67,580 KB
testcase_06 AC 57 ms
68,872 KB
testcase_07 AC 56 ms
69,556 KB
testcase_08 AC 43 ms
63,168 KB
testcase_09 AC 56 ms
71,908 KB
testcase_10 AC 82 ms
71,228 KB
testcase_11 AC 81 ms
72,548 KB
testcase_12 AC 90 ms
75,928 KB
testcase_13 AC 50 ms
67,400 KB
testcase_14 AC 55 ms
68,744 KB
testcase_15 AC 65 ms
73,344 KB
testcase_16 AC 62 ms
71,448 KB
testcase_17 AC 75 ms
76,172 KB
testcase_18 AC 66 ms
73,940 KB
testcase_19 AC 60 ms
70,072 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M, K = map(int, input().split())
ABC = [list(map(int, input().split())) for _ in range(M)]
D = list(map(int, input().split()))
E = [{} for _ in range(N + 1)]
Q = set()
for a, b, c in ABC:
    if c not in E[a]:
        E[a][c] = [b]
    else:
        E[a][c].append(b)
    if c not in E[b]:
        E[b][c] = [a]
    else:
        E[b][c].append(a)
    if c == D[0]:
        Q.add(a)
        Q.add(b)
for i in range(K):
    Q2 = set()
    for q in Q:
        if D[i] in E[q]:
            for x in E[q][D[i]]:
                Q2.add(x)
    Q = Q2
Q = sorted(list(Q))
print(len(Q))
print(*Q)
0