結果

問題 No.914 Omiyage
ユーザー brthyyjpbrthyyjp
提出日時 2020-03-17 01:38:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 140 ms / 2,000 ms
コード長 625 bytes
コンパイル時間 557 ms
コンパイル使用メモリ 81,976 KB
実行使用メモリ 84,676 KB
最終ジャッジ日時 2024-05-06 14:02:44
合計ジャッジ時間 2,880 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
84,636 KB
testcase_01 AC 140 ms
84,676 KB
testcase_02 AC 102 ms
84,300 KB
testcase_03 AC 125 ms
84,676 KB
testcase_04 AC 102 ms
84,000 KB
testcase_05 AC 38 ms
52,608 KB
testcase_06 AC 39 ms
52,096 KB
testcase_07 AC 39 ms
52,352 KB
testcase_08 AC 40 ms
52,736 KB
testcase_09 AC 37 ms
52,480 KB
testcase_10 AC 38 ms
52,608 KB
testcase_11 AC 39 ms
52,480 KB
testcase_12 AC 59 ms
71,808 KB
testcase_13 AC 122 ms
84,156 KB
testcase_14 AC 126 ms
84,520 KB
testcase_15 AC 38 ms
52,224 KB
testcase_16 AC 36 ms
52,352 KB
testcase_17 AC 54 ms
64,256 KB
testcase_18 AC 38 ms
52,736 KB
testcase_19 AC 36 ms
52,096 KB
testcase_20 AC 43 ms
52,480 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m, k = map(int, input().split())
A = [list(map(int, input().split())) for _ in range(n)]

p = n//2
B = []

import itertools
for i in itertools.product(range(m), repeat=p):
    b = 0
    for j in range(p):
        b += A[j][i[j]]
    B.append(b)
#print(B)

C = []
for i in itertools.product(range(m), repeat=n-p):
    c = 0
    for j in range(p, n):
        c += A[j][i[j-p]]
    C.append(c)
#print(C)

import bisect
B.sort()
C.sort()
id = 0
ans = k
for b in B:
    id = bisect.bisect_right(C, k-b)
    if id == 0:
        break
    else:
        ans = min(ans, k-b-C[id-1])
if ans == k:
    print(-1)
else:
    print(ans)
0