結果
問題 | No.92 逃走経路 |
ユーザー | ntuda |
提出日時 | 2024-01-05 22:59:04 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 572 bytes |
コンパイル時間 | 150 ms |
コンパイル使用メモリ | 82,580 KB |
実行使用メモリ | 76,540 KB |
最終ジャッジ日時 | 2024-09-27 19:10:44 |
合計ジャッジ時間 | 2,414 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 33 ms
52,436 KB |
testcase_02 | AC | 33 ms
53,056 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | AC | 79 ms
68,192 KB |
testcase_06 | AC | 57 ms
68,832 KB |
testcase_07 | AC | 65 ms
68,824 KB |
testcase_08 | AC | 46 ms
62,652 KB |
testcase_09 | AC | 53 ms
70,768 KB |
testcase_10 | WA | - |
testcase_11 | AC | 81 ms
72,240 KB |
testcase_12 | AC | 93 ms
76,028 KB |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
ソースコード
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 print(len(Q)) print(*Q)