結果

問題 No.914 Omiyage
ユーザー nadarenadare
提出日時 2019-10-25 21:32:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 125 ms / 2,000 ms
コード長 613 bytes
コンパイル時間 547 ms
コンパイル使用メモリ 82,340 KB
実行使用メモリ 81,796 KB
最終ジャッジ日時 2024-09-24 16:24:54
合計ジャッジ時間 2,447 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 111 ms
81,752 KB
testcase_01 AC 125 ms
81,420 KB
testcase_02 AC 87 ms
75,904 KB
testcase_03 AC 113 ms
81,796 KB
testcase_04 AC 85 ms
75,880 KB
testcase_05 AC 37 ms
52,584 KB
testcase_06 AC 38 ms
53,132 KB
testcase_07 AC 37 ms
53,092 KB
testcase_08 AC 39 ms
53,672 KB
testcase_09 AC 38 ms
52,468 KB
testcase_10 AC 39 ms
54,324 KB
testcase_11 AC 38 ms
53,312 KB
testcase_12 AC 57 ms
71,528 KB
testcase_13 AC 107 ms
80,932 KB
testcase_14 AC 113 ms
81,564 KB
testcase_15 AC 39 ms
53,124 KB
testcase_16 AC 37 ms
53,160 KB
testcase_17 AC 54 ms
69,488 KB
testcase_18 AC 39 ms
52,468 KB
testcase_19 AC 38 ms
52,192 KB
testcase_20 AC 38 ms
52,948 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# -*- coding: utf-8 -*-
from itertools import product
from bisect import bisect
import sys
#input = sys.stdin.readline
def inpl(): return list(map(int, input().split()))

N, M, K = inpl()
A = [inpl() for _ in range(N)]
ans = -1
h = N//2

L = []
for J in product(range(M), repeat=h):
    tmp = 0
    for i, j in enumerate(J):
        tmp += A[i][j]
    if tmp <= K:
        L.append(tmp)

L = sorted(L)

for J in product(range(M), repeat=N-h):
    tmp = 0
    for i, j in enumerate(J):
        tmp += A[i+h][j]
    r = bisect(L, K-tmp)
    if r:
        ans = max(ans, tmp+L[r-1])

print(K-ans if ans >= 0 else -1)
0