結果

問題 No.2370 He ate many cakes
ユーザー kutaragi36kutaragi36
提出日時 2023-07-03 23:27:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 450 ms / 2,000 ms
コード長 704 bytes
コンパイル時間 197 ms
コンパイル使用メモリ 82,660 KB
実行使用メモリ 78,176 KB
最終ジャッジ日時 2024-07-17 21:24:47
合計ジャッジ時間 4,154 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
54,064 KB
testcase_01 AC 43 ms
52,460 KB
testcase_02 AC 41 ms
52,752 KB
testcase_03 AC 450 ms
78,176 KB
testcase_04 AC 38 ms
52,692 KB
testcase_05 AC 39 ms
53,352 KB
testcase_06 AC 40 ms
54,808 KB
testcase_07 AC 39 ms
52,600 KB
testcase_08 AC 40 ms
53,328 KB
testcase_09 AC 40 ms
53,000 KB
testcase_10 AC 273 ms
77,532 KB
testcase_11 AC 443 ms
77,816 KB
testcase_12 AC 160 ms
77,764 KB
testcase_13 AC 254 ms
77,800 KB
testcase_14 AC 241 ms
77,668 KB
testcase_15 AC 441 ms
77,880 KB
testcase_16 AC 169 ms
77,588 KB
testcase_17 AC 257 ms
78,000 KB
testcase_18 AC 66 ms
75,672 KB
testcase_19 AC 66 ms
75,676 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import bisect
import itertools

N, K = map(int, input().split())
A = list(map(int, input().split()))


def make(A):
    N = len(A)
    res = []
    for X in itertools.product((True, False), repeat=N):
        t = 0
        for a, x in zip(A, X):
            if x:
                t += a
        res.append(t)
    return res

X = make(A[:N//2])
Y = make(A[N//2:])

Y.sort()
ly = len(Y)

def f(z):
    #z以上がK個以上あるか
    cnt = 0
    for x in X:
        rem = z - x
        idx = bisect.bisect_left(Y, rem)
        cnt += ly - idx
    return cnt >= K
    

l = -10**9 *N
r = 10**9 * N + 1
while r - l > 1:
    m = (r + l) // 2
    
    if f(m):
        l = m
    else:
        r = m
print(l)
0