結果

問題 No.92 逃走経路
ユーザー matsu7874matsu7874
提出日時 2015-12-31 02:28:48
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 680 ms / 5,000 ms
コード長 780 bytes
コンパイル時間 74 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-09-19 08:55:26
合計ジャッジ時間 7,229 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 338 ms
10,880 KB
testcase_01 AC 28 ms
10,752 KB
testcase_02 AC 30 ms
10,752 KB
testcase_03 AC 26 ms
10,880 KB
testcase_04 AC 28 ms
10,880 KB
testcase_05 AC 663 ms
10,752 KB
testcase_06 AC 638 ms
10,880 KB
testcase_07 AC 658 ms
10,880 KB
testcase_08 AC 40 ms
10,880 KB
testcase_09 AC 95 ms
10,752 KB
testcase_10 AC 642 ms
10,752 KB
testcase_11 AC 589 ms
10,752 KB
testcase_12 AC 680 ms
10,752 KB
testcase_13 AC 72 ms
10,752 KB
testcase_14 AC 99 ms
10,752 KB
testcase_15 AC 178 ms
10,752 KB
testcase_16 AC 185 ms
10,752 KB
testcase_17 AC 310 ms
10,880 KB
testcase_18 AC 367 ms
10,880 KB
testcase_19 AC 378 ms
10,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M,K = map(int, input().split())
graph = [[[],[]] for i in range(N)]
for i in range(M):
    a,b,c = map(int, input().split())
    graph[a-1][0].append(b-1)
    graph[a-1][1].append(c)
    graph[b-1][0].append(a-1)
    graph[b-1][1].append(c)
d = list(map(int, input().split()))
candidate = [True for i in range(N)]
for i in range(K):
    next_candidate = [False for i in range(N)]
    for j in range(N):
        if not candidate[j]:
            continue
        for k in range(len(graph[j][0])):
            nv = graph[j][0][k]
            cost = graph[j][1][k]
            if cost == d[i]:
                next_candidate[nv] = True
    candidate = next_candidate[:]
ans = []
for i in range(N):
    if candidate[i]:
        ans.append(i+1)
ans.sort()
print(len(ans))
print(*ans)
0