結果

問題 No.2039 Copy and Avoid
ユーザー tktk_snsntktk_snsn
提出日時 2022-08-13 12:54:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 353 ms / 2,000 ms
コード長 1,017 bytes
コンパイル時間 231 ms
コンパイル使用メモリ 82,600 KB
実行使用メモリ 91,268 KB
最終ジャッジ日時 2024-09-24 16:46:35
合計ジャッジ時間 4,834 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 344 ms
90,732 KB
testcase_01 AC 39 ms
54,072 KB
testcase_02 AC 53 ms
66,596 KB
testcase_03 AC 39 ms
53,356 KB
testcase_04 AC 40 ms
53,576 KB
testcase_05 AC 56 ms
66,568 KB
testcase_06 AC 41 ms
54,440 KB
testcase_07 AC 39 ms
54,348 KB
testcase_08 AC 40 ms
52,880 KB
testcase_09 AC 39 ms
54,256 KB
testcase_10 AC 42 ms
54,232 KB
testcase_11 AC 40 ms
54,764 KB
testcase_12 AC 42 ms
58,852 KB
testcase_13 AC 345 ms
91,268 KB
testcase_14 AC 353 ms
91,088 KB
testcase_15 AC 347 ms
91,080 KB
testcase_16 AC 326 ms
89,884 KB
testcase_17 AC 48 ms
62,928 KB
testcase_18 AC 56 ms
65,636 KB
testcase_19 AC 48 ms
63,880 KB
testcase_20 AC 75 ms
70,436 KB
testcase_21 AC 46 ms
60,556 KB
testcase_22 AC 42 ms
53,832 KB
testcase_23 AC 41 ms
53,280 KB
testcase_24 AC 39 ms
53,140 KB
testcase_25 AC 41 ms
54,324 KB
testcase_26 AC 39 ms
54,604 KB
testcase_27 AC 53 ms
64,056 KB
testcase_28 AC 40 ms
53,492 KB
testcase_29 AC 40 ms
53,348 KB
testcase_30 AC 39 ms
53,472 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import bisect
import heapq
inf = 2 * 10 ** 18


def gen_div(N):
    yield 1
    for i in range(2, N+1):
        if i * i > N:
            break
        if N % i == 0:
            yield i
            if i * i != N:
                yield N // i
    yield N


N, M, A, B = map(int, input().split())
C = sorted(map(int, input().split()))

ans = inf
divisors_of_N = sorted(gen_div(N))
K = len(divisors_of_N)
dtoi = {d: i for i, d in enumerate(divisors_of_N)}


dp = [[inf] * K for _ in range(K)]
dp[0][0] = 0
for i in range(K):
    for j in range(i):
        dp[i][i] = min(dp[i][i], dp[i][j] + B)

    di = divisors_of_N[i]
    NG = []
    for c in C:
        if c % di == 0:
            NG.append(c)

    for j in range(i+1, K):
        dj = divisors_of_N[j]
        if dj % di != 0:
            continue
        if bisect.bisect_right(NG, dj) - bisect.bisect_left(NG, di) > 0:
            break
        dp[j][i] = min(dp[j][i], dp[i][i] + (dj - di) // di * A)


ans = min(dp[K-1])
if ans >= inf:
    ans = -1
print(ans)
0