結果

問題 No.914 Omiyage
ユーザー AEnAEn
提出日時 2022-05-16 16:31:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 130 ms / 2,000 ms
コード長 829 bytes
コンパイル時間 182 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 86,092 KB
最終ジャッジ日時 2024-09-14 08:40:43
合計ジャッジ時間 2,646 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
86,092 KB
testcase_01 AC 129 ms
83,656 KB
testcase_02 AC 99 ms
83,192 KB
testcase_03 AC 124 ms
85,888 KB
testcase_04 AC 94 ms
83,584 KB
testcase_05 AC 39 ms
51,968 KB
testcase_06 AC 39 ms
52,352 KB
testcase_07 AC 39 ms
52,480 KB
testcase_08 AC 40 ms
52,608 KB
testcase_09 AC 39 ms
52,480 KB
testcase_10 AC 39 ms
52,352 KB
testcase_11 AC 39 ms
52,096 KB
testcase_12 AC 59 ms
71,936 KB
testcase_13 AC 130 ms
83,832 KB
testcase_14 AC 119 ms
83,328 KB
testcase_15 AC 40 ms
52,464 KB
testcase_16 AC 38 ms
51,968 KB
testcase_17 AC 52 ms
63,716 KB
testcase_18 AC 39 ms
52,096 KB
testcase_19 AC 40 ms
52,444 KB
testcase_20 AC 38 ms
52,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import product
import bisect

N, M, K = map(int, input().split())
su = [list(map(int, input().split())) for _ in range(N)]

s1, s2 = [], []
for v in product(range(M), repeat = N//2):
    sm = 0
    for i in range(N//2):
        sm += su[i][v[i]]
    s1.append(sm)

for v in product(range(M), repeat=(N+1)//2):
    sm = 0
    for i in range((N+1)//2):
        sm += su[-1-i][v[i]]
    s2.append(sm)
s2.sort()

ans = float('inf')
for s in s1:
    if s > K:
        continue
    idx = bisect.bisect_left(s2, K-s)
    if idx == 0:
        if K-s-s2[0]>=0:
            ans = min(ans, K-s-s2[0])
        else:
            continue
    else:
        if idx < len(s2) and s2[idx] == K-s:
            ans = 0
        else:
            ans = min(ans, K-s-s2[idx-1])
if ans == float('inf'):
    print(-1)
else:
    print(ans)
0