結果

問題 No.1330 Multiply or Divide
ユーザー c-yanc-yan
提出日時 2021-01-10 00:58:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 113 ms / 2,000 ms
コード長 794 bytes
コンパイル時間 334 ms
コンパイル使用メモリ 82,352 KB
実行使用メモリ 115,840 KB
最終ジャッジ日時 2024-11-19 01:01:53
合計ジャッジ時間 4,846 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
53,044 KB
testcase_01 AC 94 ms
113,664 KB
testcase_02 AC 36 ms
52,992 KB
testcase_03 AC 36 ms
52,352 KB
testcase_04 AC 35 ms
52,608 KB
testcase_05 AC 37 ms
52,992 KB
testcase_06 AC 100 ms
109,312 KB
testcase_07 AC 109 ms
113,280 KB
testcase_08 AC 110 ms
115,712 KB
testcase_09 AC 113 ms
115,840 KB
testcase_10 AC 110 ms
115,712 KB
testcase_11 AC 103 ms
115,840 KB
testcase_12 AC 110 ms
115,840 KB
testcase_13 AC 38 ms
52,480 KB
testcase_14 AC 36 ms
53,248 KB
testcase_15 AC 38 ms
52,608 KB
testcase_16 AC 38 ms
52,736 KB
testcase_17 AC 36 ms
52,480 KB
testcase_18 AC 85 ms
111,232 KB
testcase_19 AC 86 ms
111,232 KB
testcase_20 AC 87 ms
111,104 KB
testcase_21 AC 85 ms
111,872 KB
testcase_22 AC 86 ms
111,360 KB
testcase_23 AC 94 ms
113,792 KB
testcase_24 AC 37 ms
52,608 KB
testcase_25 AC 37 ms
53,120 KB
testcase_26 AC 36 ms
52,992 KB
testcase_27 AC 36 ms
52,480 KB
testcase_28 AC 36 ms
52,608 KB
testcase_29 AC 35 ms
52,608 KB
testcase_30 AC 36 ms
52,480 KB
testcase_31 AC 37 ms
52,608 KB
testcase_32 AC 36 ms
52,480 KB
testcase_33 AC 36 ms
52,992 KB
testcase_34 AC 73 ms
99,712 KB
testcase_35 AC 47 ms
69,760 KB
testcase_36 AC 70 ms
94,464 KB
testcase_37 AC 68 ms
91,008 KB
testcase_38 AC 57 ms
78,720 KB
testcase_39 AC 50 ms
71,296 KB
testcase_40 AC 54 ms
74,752 KB
testcase_41 AC 46 ms
66,560 KB
testcase_42 AC 65 ms
87,552 KB
testcase_43 AC 70 ms
91,648 KB
testcase_44 AC 99 ms
109,440 KB
testcase_45 AC 102 ms
109,440 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heappop, heappush

INF = 10 ** 20

N, M, P, *A = map(int, open(0).read().split())

def f(x):
    c = 0
    while x % P == 0:
        c += 1
        x //= P
    return (x, c)

max_A = max(A)

if max_A > M:
    print(1)
    exit()

b = {}
for m, c in map(f, A):
    b.setdefault(c, 0)
    b[c] = max(b[c], m)
t = 1
for k in sorted(b):
    if b[k] <= t:
        del b[k]
    else:
        t = b[k]
cs = sorted(b)

if len(cs) == 0:
    print(-1)
    exit()

q = [(0, 1)]
d = {}
d[0] = 1
while q:
    c, x = heappop(q)
    if d[c] > x:
        continue
    if x * max_A > M:
        print(c + 1)
        break
    for k in cs:
        d.setdefault(c + 1 + k, 0)
        if x * b[k] > d[c + 1 + k]:
            d[c + 1 + k] = x * b[k]
            heappush(q, (c + 1 + k, x * b[k]))
0