結果

問題 No.914 Omiyage
ユーザー O2MTO2MT
提出日時 2020-12-13 02:10:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 111 ms / 2,000 ms
コード長 603 bytes
コンパイル時間 158 ms
コンパイル使用メモリ 82,324 KB
実行使用メモリ 85,740 KB
最終ジャッジ日時 2024-09-19 22:41:40
合計ジャッジ時間 2,012 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 102 ms
85,620 KB
testcase_01 AC 111 ms
83,308 KB
testcase_02 AC 40 ms
59,028 KB
testcase_03 AC 99 ms
85,740 KB
testcase_04 AC 49 ms
65,040 KB
testcase_05 AC 34 ms
52,992 KB
testcase_06 AC 35 ms
52,076 KB
testcase_07 AC 37 ms
52,836 KB
testcase_08 AC 34 ms
53,348 KB
testcase_09 AC 35 ms
52,764 KB
testcase_10 AC 35 ms
53,080 KB
testcase_11 AC 34 ms
52,488 KB
testcase_12 AC 54 ms
73,140 KB
testcase_13 AC 90 ms
81,820 KB
testcase_14 AC 96 ms
83,564 KB
testcase_15 AC 35 ms
52,204 KB
testcase_16 AC 33 ms
53,256 KB
testcase_17 AC 52 ms
66,900 KB
testcase_18 AC 37 ms
53,256 KB
testcase_19 AC 38 ms
53,156 KB
testcase_20 AC 36 ms
54,040 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import bisect
N,M,K = map(int,input().split())
A = []
for _ in range(N):
    a = list(map(int,input().split()))
    A.append(a)
N //= 2
B = A[N:]
A = A[:N]
ans = 0
l,r = [],[]
def perm(n,s,arr,h):
    global N
    if n == len(h):
        arr.append(s)
        return
    for a in h[n]:
        if s+a >= K:
            continue
        perm(n+1,s+a,arr,h)
perm(0,0,l,A)
perm(0,0,r,B)
r.sort()
if l == [] or r == []:
    print(-1)
    exit()
for i in l:
    b = bisect(r,K-i)
    if i+r[b-1] > K:
        continue
    ans = max(ans,i+r[b-1])
if ans == 0:
    print(-1)
else:
    print(K-ans)
0