結果

問題 No.1330 Multiply or Divide
ユーザー tktk_snsntktk_snsn
提出日時 2021-09-25 13:37:30
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 743 ms / 2,000 ms
コード長 1,009 bytes
コンパイル時間 202 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 54,636 KB
最終ジャッジ日時 2024-07-05 12:04:53
合計ジャッジ時間 7,615 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
10,752 KB
testcase_01 AC 514 ms
51,700 KB
testcase_02 AC 26 ms
10,752 KB
testcase_03 AC 25 ms
10,752 KB
testcase_04 AC 25 ms
10,624 KB
testcase_05 AC 25 ms
10,880 KB
testcase_06 AC 59 ms
12,840 KB
testcase_07 AC 81 ms
24,316 KB
testcase_08 AC 716 ms
53,440 KB
testcase_09 AC 743 ms
54,636 KB
testcase_10 AC 706 ms
53,552 KB
testcase_11 AC 679 ms
52,736 KB
testcase_12 AC 718 ms
53,552 KB
testcase_13 AC 27 ms
10,752 KB
testcase_14 AC 25 ms
10,752 KB
testcase_15 AC 25 ms
10,880 KB
testcase_16 AC 25 ms
10,752 KB
testcase_17 AC 26 ms
10,752 KB
testcase_18 AC 121 ms
42,488 KB
testcase_19 AC 118 ms
43,888 KB
testcase_20 AC 117 ms
43,876 KB
testcase_21 AC 120 ms
42,636 KB
testcase_22 AC 124 ms
42,624 KB
testcase_23 AC 87 ms
26,876 KB
testcase_24 AC 25 ms
10,752 KB
testcase_25 AC 25 ms
10,752 KB
testcase_26 AC 25 ms
11,008 KB
testcase_27 AC 25 ms
10,624 KB
testcase_28 AC 25 ms
10,880 KB
testcase_29 AC 25 ms
10,880 KB
testcase_30 AC 25 ms
10,880 KB
testcase_31 AC 26 ms
10,880 KB
testcase_32 AC 24 ms
10,752 KB
testcase_33 AC 25 ms
10,752 KB
testcase_34 AC 92 ms
30,772 KB
testcase_35 AC 44 ms
17,076 KB
testcase_36 AC 84 ms
29,380 KB
testcase_37 AC 79 ms
28,220 KB
testcase_38 AC 57 ms
21,036 KB
testcase_39 AC 47 ms
17,964 KB
testcase_40 AC 51 ms
19,768 KB
testcase_41 AC 40 ms
16,260 KB
testcase_42 AC 75 ms
27,580 KB
testcase_43 AC 79 ms
29,420 KB
testcase_44 AC 60 ms
12,840 KB
testcase_45 AC 59 ms
12,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import bisect
from collections import defaultdict
inf = 10 ** 18


N, M, P = map(int, input().split())
A = set(map(int, input().split()))
A = list(A)


last = max(A)
if last > M:
    print(1)
    exit()


WV = defaultdict(lambda: inf)
for a in A:
    cnt = 1
    while a % P == 0:
        a //= P
        cnt += 1
    if a == 1:
        continue

    x = a
    cost = cnt
    while x <= M:
        WV[x] = min(WV[x], cost)
        cost += cnt
        x *= a


WV = list(WV.items())
WV.sort()
item = []
for w, v in sorted(WV):
    while item and item[-1][1] >= v:
        item.pop()
    item.append((w, v))

if not item:
    print(-1)
    exit()

ans = inf
W, V = zip(*item)
for w, v in item:
    ww = w * last
    if ww > M:
        ans = min(ans, v + 1)
        continue

    target = (M + ww - 1) // ww
    i = bisect.bisect_right(W, target)
    for j in range(-1, 2):
        if 0 <= i + j < len(item) and ww * W[i+j] > M:
            ans = min(ans, v + V[i+j] + 1)


if ans >= inf:
    ans = -1
print(ans)
0