結果

問題 No.2370 He ate many cakes
ユーザー chankei271828chankei271828
提出日時 2023-07-04 00:50:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 817 ms / 2,000 ms
コード長 817 bytes
コンパイル時間 206 ms
コンパイル使用メモリ 82,244 KB
実行使用メモリ 85,768 KB
最終ジャッジ日時 2024-07-17 22:28:23
合計ジャッジ時間 6,069 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,812 KB
testcase_01 AC 35 ms
52,468 KB
testcase_02 AC 35 ms
53,012 KB
testcase_03 AC 360 ms
84,036 KB
testcase_04 AC 33 ms
53,116 KB
testcase_05 AC 40 ms
54,328 KB
testcase_06 AC 39 ms
54,656 KB
testcase_07 AC 35 ms
53,336 KB
testcase_08 AC 34 ms
53,928 KB
testcase_09 AC 33 ms
52,860 KB
testcase_10 AC 127 ms
79,852 KB
testcase_11 AC 226 ms
84,232 KB
testcase_12 AC 416 ms
79,720 KB
testcase_13 AC 610 ms
85,452 KB
testcase_14 AC 252 ms
83,792 KB
testcase_15 AC 798 ms
84,332 KB
testcase_16 AC 754 ms
82,180 KB
testcase_17 AC 817 ms
85,768 KB
testcase_18 AC 356 ms
77,284 KB
testcase_19 AC 42 ms
62,852 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from heapq import heapify,heappop,heappush
input = lambda :sys.stdin.readline().rstrip()
mi = lambda :map(int,input().split())
li = lambda :list(mi())
N,K=mi()
A=li()
if N==1:
    ans=[0,A[0]]
    ans.sort(reverse=True)
    print(ans[K-1])
else:
    n=N//2
    m=N-n
    C=[]
    D=[]
    for bit in range(1<<n):
        cnt=0
        for i in range(n):
            cnt+=((bit>>i)&1)*A[i]
        C.append(cnt)
    for bit in range(1<<m):
        cnt=0
        for i in range(m):
            cnt+=((bit>>i)&1)*A[i+n]
        D.append(cnt)
    C.sort(reverse=True)
    D.sort(reverse=True)
    h=[(-(c+D[0]),i,0) for i,c in enumerate(C)]
    #print(h)
    heapify(h)
    for _ in range(K-1):
        a,b,c=heappop(h)
        if c!=(1<<m)-1:
            heappush(h,(-(C[b]+D[c+1]),b,c+1))
    print(-h[0][0])
0