結果

問題 No.1515 Making Many Multiples
ユーザー shotoyooshotoyoo
提出日時 2022-07-01 00:55:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 773 ms / 2,000 ms
コード長 1,484 bytes
コンパイル時間 201 ms
コンパイル使用メモリ 82,480 KB
実行使用メモリ 109,120 KB
最終ジャッジ日時 2024-11-25 01:27:00
合計ジャッジ時間 11,692 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
55,244 KB
testcase_01 AC 52 ms
67,448 KB
testcase_02 AC 773 ms
108,820 KB
testcase_03 AC 765 ms
109,120 KB
testcase_04 AC 759 ms
108,468 KB
testcase_05 AC 771 ms
108,956 KB
testcase_06 AC 261 ms
108,816 KB
testcase_07 AC 399 ms
108,844 KB
testcase_08 AC 240 ms
84,520 KB
testcase_09 AC 422 ms
92,412 KB
testcase_10 AC 473 ms
93,256 KB
testcase_11 AC 578 ms
98,852 KB
testcase_12 AC 400 ms
90,792 KB
testcase_13 AC 84 ms
77,856 KB
testcase_14 AC 655 ms
101,564 KB
testcase_15 AC 84 ms
77,500 KB
testcase_16 AC 743 ms
106,424 KB
testcase_17 AC 192 ms
93,120 KB
testcase_18 AC 159 ms
98,364 KB
testcase_19 AC 85 ms
85,968 KB
testcase_20 AC 182 ms
86,412 KB
testcase_21 AC 493 ms
107,560 KB
testcase_22 AC 70 ms
74,808 KB
testcase_23 AC 515 ms
108,108 KB
testcase_24 AC 38 ms
54,620 KB
testcase_25 AC 41 ms
60,556 KB
testcase_26 AC 39 ms
56,104 KB
testcase_27 AC 557 ms
108,248 KB
testcase_28 AC 378 ms
108,280 KB
testcase_29 AC 66 ms
73,012 KB
testcase_30 AC 87 ms
77,804 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys, random
input = lambda : sys.stdin.readline().rstrip()

write = lambda x: sys.stdout.write(x+"\n"); writef = lambda x: print("{:.12f}".format(x))
debug = lambda x: sys.stderr.write(x+"\n")
YES="Yes"; NO="No"; pans = lambda v: print(YES if v else NO); inf=10**18
LI = lambda : list(map(int, input().split()))
def debug(_l_):
    for s in _l_.split():
        print(f"{s}={eval(s)}", end=" ")
    print()
def dlist(*l, fill=0):
    if len(l)==1:
        return [fill]*l[0]
    ll = l[1:]
    return [dlist(*ll, fill=fill) for _ in range(l[0])]
sys.setrecursionlimit(3*10**5+10)

n,k,x,y = list(map(int, input().split()))
dp = [[-inf]*k for _ in range(k)]
x %= k
y %= k
dp[x][y] = dp[y][x] = 0
a = LI()
xs = [-inf]*k
ys = [-inf]*k
xs[x] = ys[y] = xs[y] = ys[x] = 0
for i in range(n):
    v0 = a[i]%k
    v = (-a[i]) % k
    for xx in range(k):
        yy = (v - xx) % k
        if dp[xx][yy]==-inf:
            continue
#         print(v, xx, yy)
        dp[xx][yy] += 1
        xs[xx] = max(xs[xx], dp[xx][yy])
        ys[yy] = max(ys[yy], dp[xx][yy])
    nxs = xs[:]
    nys = ys[:]
    for xx in range(k):
        dp[xx][v0] = max(dp[xx][v0], ys[xx])
        dp[v0][xx] = max(dp[v0][xx], xs[xx])
        nxs[xx] = max(nxs[xx], dp[xx][v0])
        nys[xx] = max(nys[xx], dp[v0][xx])
        nxs[v0] = max(nxs[v0], dp[v0][xx])
        nys[v0] = max(nys[v0], dp[xx][v0])
    xs = nxs
    ys = nys
#     break
ans = -inf
for item in dp:
    ans = max(ans, max(item))
print(ans)
0