結果

問題 No.92 逃走経路
ユーザー c-yanc-yan
提出日時 2021-02-11 00:18:47
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 495 bytes
コンパイル時間 170 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 17,568 KB
最終ジャッジ日時 2024-07-08 11:32:13
合計ジャッジ時間 8,964 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 453 ms
11,008 KB
testcase_01 AC 25 ms
10,752 KB
testcase_02 AC 25 ms
10,624 KB
testcase_03 AC 24 ms
10,624 KB
testcase_04 AC 25 ms
10,752 KB
testcase_05 AC 393 ms
10,752 KB
testcase_06 AC 31 ms
11,008 KB
testcase_07 AC 30 ms
11,008 KB
testcase_08 AC 26 ms
10,496 KB
testcase_09 AC 786 ms
10,752 KB
testcase_10 TLE -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M, K = map(int, input().split())
abc = [tuple(map(int, input().split())) for _ in range(M)]
d = list(map(int, input().split()))

links = {}
for a, b, c in abc:
    links.setdefault(c, [])
    links[c].append((a - 1, b - 1))

q = set(range(N))
for k in range(K):
    nq = set()
    l = links[d[k]]
    for i in q:
        for a, b in l:
            if i == a:
                nq.add(b)
            if i == b:
                nq.add(a)
    q = nq
print(len(q))
print(*sorted(i + 1 for i in q))
0