結果

問題 No.92 逃走経路
ユーザー lloyzlloyz
提出日時 2022-09-08 00:11:34
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 571 ms / 5,000 ms
コード長 723 bytes
コンパイル時間 115 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 11,904 KB
最終ジャッジ日時 2024-11-23 15:32:46
合計ジャッジ時間 5,627 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 242 ms
11,904 KB
testcase_01 AC 29 ms
10,880 KB
testcase_02 AC 29 ms
10,752 KB
testcase_03 AC 28 ms
10,624 KB
testcase_04 AC 28 ms
10,752 KB
testcase_05 AC 518 ms
11,136 KB
testcase_06 AC 352 ms
11,008 KB
testcase_07 AC 367 ms
11,136 KB
testcase_08 AC 35 ms
11,648 KB
testcase_09 AC 120 ms
11,776 KB
testcase_10 AC 538 ms
11,392 KB
testcase_11 AC 513 ms
11,648 KB
testcase_12 AC 571 ms
11,776 KB
testcase_13 AC 76 ms
11,648 KB
testcase_14 AC 97 ms
11,776 KB
testcase_15 AC 154 ms
11,776 KB
testcase_16 AC 148 ms
11,776 KB
testcase_17 AC 219 ms
11,904 KB
testcase_18 AC 242 ms
11,392 KB
testcase_19 AC 250 ms
11,264 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict, deque

n, m, k = map(int, input().split())
edge = defaultdict(list)
for _ in range(m):
    a, b, c = map(int, input().split())
    edge[a].append((b, c))
    edge[b].append((a, c))
D = [0] + list(map(int, input().split()))
Que = deque()
for i in range(1, n + 1):
    Que.append((i, 0))
ANS = []
Seen = [[False for _ in range(n + 1)] for _ in range(k + 1)]
while Que:
    cp, cnt = Que.popleft()
    if cnt == k:
        ANS.append(cp)
        continue
    for np, c in edge[cp]:
        if D[cnt + 1] != c:
            continue
        if Seen[cnt + 1][np]:
            continue
        Seen[cnt + 1][np] = True
        Que.append((np, cnt + 1))

ANS.sort()
print(len(ANS))
print(*ANS)
0