結果

問題 No.2617 容量3のナップザック
ユーザー mkawa2mkawa2
提出日時 2024-01-26 22:18:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 700 ms / 2,000 ms
コード長 1,668 bytes
コンパイル時間 303 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 255,964 KB
最終ジャッジ日時 2024-09-28 08:21:47
合計ジャッジ時間 16,457 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
51,968 KB
testcase_01 AC 43 ms
52,992 KB
testcase_02 AC 43 ms
52,736 KB
testcase_03 AC 42 ms
52,864 KB
testcase_04 AC 43 ms
52,480 KB
testcase_05 AC 43 ms
52,864 KB
testcase_06 AC 44 ms
52,776 KB
testcase_07 AC 47 ms
52,224 KB
testcase_08 AC 44 ms
52,224 KB
testcase_09 AC 44 ms
52,608 KB
testcase_10 AC 45 ms
52,480 KB
testcase_11 AC 45 ms
52,480 KB
testcase_12 AC 575 ms
252,672 KB
testcase_13 AC 520 ms
251,008 KB
testcase_14 AC 563 ms
252,032 KB
testcase_15 AC 390 ms
255,224 KB
testcase_16 AC 389 ms
243,080 KB
testcase_17 AC 498 ms
254,968 KB
testcase_18 AC 480 ms
254,748 KB
testcase_19 AC 111 ms
101,368 KB
testcase_20 AC 489 ms
249,576 KB
testcase_21 AC 328 ms
190,696 KB
testcase_22 AC 556 ms
250,240 KB
testcase_23 AC 614 ms
249,216 KB
testcase_24 AC 91 ms
84,352 KB
testcase_25 AC 310 ms
237,356 KB
testcase_26 AC 401 ms
254,828 KB
testcase_27 AC 291 ms
165,244 KB
testcase_28 AC 121 ms
80,384 KB
testcase_29 AC 212 ms
168,192 KB
testcase_30 AC 519 ms
248,704 KB
testcase_31 AC 557 ms
254,080 KB
testcase_32 AC 658 ms
255,964 KB
testcase_33 AC 663 ms
255,692 KB
testcase_34 AC 700 ms
254,868 KB
testcase_35 AC 628 ms
254,816 KB
testcase_36 AC 656 ms
254,424 KB
testcase_37 AC 699 ms
254,692 KB
testcase_38 AC 593 ms
255,144 KB
testcase_39 AC 558 ms
245,504 KB
testcase_40 AC 671 ms
255,540 KB
testcase_41 AC 394 ms
254,896 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

# sys.setrecursionlimit(1000005)
# sys.set_int_max_str_digits(200005)
int1 = lambda x: int(x)-1
pDB = lambda *x: print(*x, end="\n", file=sys.stderr)
p2D = lambda x: print(*x, sep="\n", end="\n\n", file=sys.stderr)
def II(): return int(sys.stdin.readline())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def LI1(): return list(map(int1, sys.stdin.readline().split()))
def LLI1(rows_number): return [LI1() for _ in range(rows_number)]
def SI(): return sys.stdin.readline().rstrip()

dij = [(0, 1), (-1, 0), (0, -1), (1, 0)]
# dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)]
# inf = -1-(-1 << 31)
inf = -1-(-1 << 62)

# md = 10**9+7
md = 998244353

n,k,seed,a,b,m=LI()
ff=[seed]
for _ in range(2*n):
    ff.append((ff[-1]*a%m+b)%m)
ww=[f%3+1 for f in ff]
vv=[ww[i]*ff[n+i] for i in range(n)]

v1=[]
v2=[]
v3=[]
for w,v in zip(ww,vv):
    if w==1:v1.append(v)
    if w==2:v2.append(v)
    if w==3:v3.append(v)

def tocs(vv):
    vv.sort(reverse=True)
    cs=[0]
    for v in vv:cs.append(cs[-1]+v)
    return cs

s1=tocs(v1)
s2=tocs(v2)+[-inf]
s3=tocs(v3)
# pDB(v1)
# pDB(s1)

def binary_search(l, r, minimize,c):
    if minimize: l -= 1
    else: r += 1
    while l+1 < r:
        m = (l+r)//2
        if ok(m,c) ^ minimize: l = m
        else: r = m
    if minimize: return r
    return l

def ok(b,c):
    return bc2val(b,c)>=bc2val(b+1,c)

def bc2val(b,c):
    a=min(len(v1),(k-c-b)*3+b)
    return s3[c]+s2[b]+s1[a]

ans=0
for c in range(min(len(v3),k)+1):
    b=binary_search(0,min(k-c,len(s2)),True,c)
    ans=max(ans,bc2val(b,c))

print(ans)
0