結果
問題 | No.1330 Multiply or Divide |
ユーザー | terry_u16 |
提出日時 | 2021-01-08 23:17:14 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,139 bytes |
コンパイル時間 | 745 ms |
コンパイル使用メモリ | 82,368 KB |
実行使用メモリ | 747,168 KB |
最終ジャッジ日時 | 2024-11-16 17:40:10 |
合計ジャッジ時間 | 67,432 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | MLE | - |
testcase_02 | WA | - |
testcase_03 | MLE | - |
testcase_04 | AC | 38 ms
57,472 KB |
testcase_05 | MLE | - |
testcase_06 | MLE | - |
testcase_07 | WA | - |
testcase_08 | TLE | - |
testcase_09 | MLE | - |
testcase_10 | TLE | - |
testcase_11 | MLE | - |
testcase_12 | TLE | - |
testcase_13 | MLE | - |
testcase_14 | WA | - |
testcase_15 | MLE | - |
testcase_16 | AC | 39 ms
57,728 KB |
testcase_17 | MLE | - |
testcase_18 | TLE | - |
testcase_19 | MLE | - |
testcase_20 | TLE | - |
testcase_21 | MLE | - |
testcase_22 | TLE | - |
testcase_23 | MLE | - |
testcase_24 | AC | 39 ms
58,368 KB |
testcase_25 | MLE | - |
testcase_26 | AC | 41 ms
57,472 KB |
testcase_27 | MLE | - |
testcase_28 | AC | 40 ms
57,856 KB |
testcase_29 | MLE | - |
testcase_30 | AC | 41 ms
57,600 KB |
testcase_31 | MLE | - |
testcase_32 | AC | 38 ms
58,112 KB |
testcase_33 | MLE | - |
testcase_34 | TLE | - |
testcase_35 | MLE | - |
testcase_36 | TLE | - |
testcase_37 | MLE | - |
testcase_38 | TLE | - |
testcase_39 | MLE | - |
testcase_40 | TLE | - |
testcase_41 | TLE | - |
testcase_42 | TLE | - |
testcase_43 | TLE | - |
testcase_44 | WA | - |
testcase_45 | MLE | - |
ソースコード
import heapq n, m, p = map(int, input().split()) a = list(map(int, input().split())) costs = [1] * n for i in range(len(a)): while a[i] % p == 0: a[i] //= p costs[i] += 1 if all([ai == 1 for ai in a]): print(-1) exit() def create_edges(a, costs): dic = {} INF = 1000000000 for i in range(len(a)): if dic.get(a[i], INF) > costs[i]: dic[a[i]] = costs[i] a = [] costs = [] for key in dic.keys(): a.append(key) costs.append(dic[key]) return a, costs def dijkstra(a, costs, m): distances = { 1 : 0 } queue = [(0, 1)] heapq.heapify(queue) INF = 1000000000 while len(queue) > 0: c, v = heapq.heappop(queue) if c > distances.get(v, INF): continue elif v > m: return c for i in range(len(a)): nxt = v * a[i] cst = c + costs[i] if cst < distances.get(nxt, INF): distances[nxt] = cst heapq.heappush(queue, (cst, nxt)) return INF a, costs = create_edges(a, costs) print(dijkstra(a, costs, m))