結果

問題 No.1330 Multiply or Divide
ユーザー qibqib
提出日時 2023-04-24 01:28:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 153 ms / 2,000 ms
コード長 918 bytes
コンパイル時間 448 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 115,328 KB
最終ジャッジ日時 2024-11-08 06:18:09
合計ジャッジ時間 7,075 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
52,864 KB
testcase_01 AC 125 ms
108,800 KB
testcase_02 AC 45 ms
52,224 KB
testcase_03 AC 44 ms
52,352 KB
testcase_04 AC 44 ms
52,480 KB
testcase_05 AC 45 ms
52,352 KB
testcase_06 AC 123 ms
115,200 KB
testcase_07 AC 137 ms
108,544 KB
testcase_08 AC 153 ms
114,792 KB
testcase_09 AC 151 ms
114,388 KB
testcase_10 AC 152 ms
114,644 KB
testcase_11 AC 146 ms
114,380 KB
testcase_12 AC 146 ms
114,280 KB
testcase_13 AC 110 ms
76,672 KB
testcase_14 AC 82 ms
68,096 KB
testcase_15 AC 47 ms
52,736 KB
testcase_16 AC 82 ms
68,480 KB
testcase_17 AC 63 ms
63,616 KB
testcase_18 AC 116 ms
101,888 KB
testcase_19 AC 120 ms
102,144 KB
testcase_20 AC 116 ms
102,272 KB
testcase_21 AC 120 ms
102,016 KB
testcase_22 AC 119 ms
102,272 KB
testcase_23 AC 139 ms
114,072 KB
testcase_24 AC 45 ms
52,736 KB
testcase_25 AC 43 ms
52,352 KB
testcase_26 AC 46 ms
52,608 KB
testcase_27 AC 48 ms
52,352 KB
testcase_28 AC 47 ms
52,224 KB
testcase_29 AC 46 ms
52,608 KB
testcase_30 AC 45 ms
52,608 KB
testcase_31 AC 45 ms
52,352 KB
testcase_32 AC 46 ms
52,352 KB
testcase_33 AC 44 ms
52,480 KB
testcase_34 AC 95 ms
98,944 KB
testcase_35 AC 63 ms
70,272 KB
testcase_36 AC 89 ms
94,720 KB
testcase_37 AC 85 ms
90,752 KB
testcase_38 AC 72 ms
78,080 KB
testcase_39 AC 64 ms
71,808 KB
testcase_40 AC 70 ms
75,776 KB
testcase_41 AC 61 ms
67,200 KB
testcase_42 AC 83 ms
87,680 KB
testcase_43 AC 87 ms
92,032 KB
testcase_44 AC 120 ms
115,200 KB
testcase_45 AC 121 ms
115,328 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq

INF = 1 << 60

n, m, p = map(int, input().split())
a = list(map(int, input().split()))

if any([x > m for x in a]):
  print("1")
  exit()

idx = {}
q = []
for i in range(n):
  cur = a[i]
  cnt = 1
  while cur % p == 0:
    cnt += 1
    cur //= p

  q.append((a[i], cur))

  if idx.get(cnt, None) is None or a[idx[cnt]] < a[i]:
    idx[cnt] = i

dist = {}
dist[1] = 0
hp = [(0, 1)]
ans = INF
while len(hp) > 0:
  cd, cur = heapq.heappop(hp)
  if cd > dist[cur]:
    continue

  for cost, i in idx.items():
    ai, d = q[i]
    nxt = cur * ai
    if dist.get(nxt, INF) > dist[cur] + 1:
      if nxt > m:
        ans = min(ans, dist[cur] + 1)
    nxt = cur * d
    if dist.get(nxt, INF) > dist[cur] + cost:
      if nxt > m:
        ans = min(ans, dist[cur] + cost)
      else:
        dist[nxt] = dist[cur] + cost
        heapq.heappush(hp, (dist[nxt], nxt))

if ans < INF:
  print(ans)
else:
  print("-1")
0