結果

問題 No.2617 容量3のナップザック
ユーザー titiatitia
提出日時 2024-01-30 06:04:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 978 ms / 2,000 ms
コード長 1,084 bytes
コンパイル時間 137 ms
コンパイル使用メモリ 82,564 KB
実行使用メモリ 254,248 KB
最終ジャッジ日時 2024-09-28 10:11:53
合計ジャッジ時間 13,335 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,968 KB
testcase_01 AC 37 ms
52,224 KB
testcase_02 AC 42 ms
52,352 KB
testcase_03 AC 37 ms
52,480 KB
testcase_04 AC 37 ms
52,352 KB
testcase_05 AC 36 ms
51,968 KB
testcase_06 AC 36 ms
51,968 KB
testcase_07 AC 36 ms
52,480 KB
testcase_08 AC 38 ms
52,224 KB
testcase_09 AC 37 ms
52,096 KB
testcase_10 AC 36 ms
52,352 KB
testcase_11 AC 38 ms
51,968 KB
testcase_12 AC 421 ms
250,496 KB
testcase_13 AC 377 ms
249,088 KB
testcase_14 AC 411 ms
250,920 KB
testcase_15 AC 292 ms
246,820 KB
testcase_16 AC 537 ms
228,052 KB
testcase_17 AC 386 ms
253,784 KB
testcase_18 AC 343 ms
254,248 KB
testcase_19 AC 96 ms
98,180 KB
testcase_20 AC 360 ms
246,992 KB
testcase_21 AC 259 ms
179,712 KB
testcase_22 AC 420 ms
246,528 KB
testcase_23 AC 489 ms
246,016 KB
testcase_24 AC 71 ms
78,336 KB
testcase_25 AC 248 ms
224,384 KB
testcase_26 AC 590 ms
242,304 KB
testcase_27 AC 217 ms
156,608 KB
testcase_28 AC 66 ms
74,496 KB
testcase_29 AC 175 ms
160,256 KB
testcase_30 AC 373 ms
247,424 KB
testcase_31 AC 390 ms
253,824 KB
testcase_32 AC 445 ms
245,944 KB
testcase_33 AC 534 ms
246,032 KB
testcase_34 AC 548 ms
245,864 KB
testcase_35 AC 454 ms
245,780 KB
testcase_36 AC 978 ms
245,464 KB
testcase_37 AC 534 ms
245,800 KB
testcase_38 AC 431 ms
245,640 KB
testcase_39 AC 427 ms
242,528 KB
testcase_40 AC 541 ms
245,708 KB
testcase_41 AC 246 ms
242,812 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N,K,seed,a,b,m=map(int,input().split())

F=[seed]

for i in range(2*N-1):
    F.append((F[-1]*a+b)%m)

V=[[],[],[]]

for i in range(N):
    w=F[i]%3+1
    v=F[i+N]*w

    V[w-1].append(v)
    
for i in range(3):
    V[i].sort(reverse=True)

S=[[0],[0],[0]]
for i in range(3):
    for j in range(len(V[i])):
        S[i].append(S[i][-1]+V[i][j])


ANS=0
# 3を何個取るか三分探索

def calc(three):
    ANS=S[2][three]

    rest=K-three

    MAX=0
    for i in range(rest+1):
        rest2=i+(rest-i)*3
        score=0

        if i<len(S[1]):
            score=S[1][i]
        else:
            score=S[1][-1]

        if rest2<len(S[0]):
            score+=S[0][rest2]
        else:
            score+=S[0][-1]

        if MAX<score:
            MAX=score

    return MAX+ANS

MIN=0
MAX=min(K,len(V[2]))

while MAX-MIN>5:
    mid1=MIN+(MAX-MIN)//3
    mid2=MIN+(MAX-MIN)//3*2

    c1=calc(mid1)
    c2=calc(mid2)

    if c1>c2:
        MAX=mid2
    else:
        MIN=mid1

for i in range(MIN,MAX+1):
    ANS=max(ANS,calc(i))

print(ANS)
0