結果

問題 No.2370 He ate many cakes
ユーザー rlangevinrlangevin
提出日時 2023-10-17 22:57:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 406 ms / 2,000 ms
コード長 805 bytes
コンパイル時間 418 ms
コンパイル使用メモリ 82,576 KB
実行使用メモリ 78,896 KB
最終ジャッジ日時 2024-09-17 20:06:43
合計ジャッジ時間 3,920 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,788 KB
testcase_01 AC 38 ms
53,072 KB
testcase_02 AC 38 ms
52,736 KB
testcase_03 AC 199 ms
78,896 KB
testcase_04 AC 36 ms
53,268 KB
testcase_05 AC 35 ms
53,352 KB
testcase_06 AC 36 ms
52,652 KB
testcase_07 AC 35 ms
52,948 KB
testcase_08 AC 35 ms
52,800 KB
testcase_09 AC 34 ms
53,300 KB
testcase_10 AC 138 ms
77,332 KB
testcase_11 AC 406 ms
78,640 KB
testcase_12 AC 247 ms
77,600 KB
testcase_13 AC 213 ms
78,644 KB
testcase_14 AC 406 ms
78,532 KB
testcase_15 AC 395 ms
78,520 KB
testcase_16 AC 159 ms
77,444 KB
testcase_17 AC 250 ms
78,760 KB
testcase_18 AC 59 ms
75,664 KB
testcase_19 AC 59 ms
75,832 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import *

N, K = map(int, input().split())
A = list(map(int, input().split()))
if N == 1:
    print(sorted([0, A[0]], reverse=True)[K - 1])
    exit()
    
B, C = A[:N//2], A[N//2:]
N, M = len(B), len(C)
N2, M2 = 1 << N, 1 << M
L1 = []
for s in range(N2):
    val = 0
    for i in range(N):
        if (s >> i) & 1:
            val += B[i]
    L1.append(val)
    
L2 = []
for s in range(M2):
    val = 0
    for i in range(M):
        if (s >> i) & 1:
            val += C[i]
    L2.append(val) 
L2.sort()

def check(m):
    cnt = 0
    for a in L1:
        cnt += M2 - bisect_left(L2, m - a)
    return cnt >= K
        
            
yes = -10 ** 12
no = 10 ** 12
while no - yes != 1:
    mid = (yes + no)//2
    if check(mid):
        yes = mid
    else:
        no = mid
        
print(yes)
0