結果

問題 No.15 カタログショッピング
ユーザー tnodinotnodino
提出日時 2022-02-06 18:14:31
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 416 ms / 5,000 ms
コード長 816 bytes
コンパイル時間 210 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 48,820 KB
最終ジャッジ日時 2024-06-11 13:54:19
合計ジャッジ時間 3,032 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,752 KB
testcase_01 AC 26 ms
10,752 KB
testcase_02 AC 25 ms
10,880 KB
testcase_03 AC 26 ms
10,880 KB
testcase_04 AC 26 ms
10,752 KB
testcase_05 AC 413 ms
48,724 KB
testcase_06 AC 407 ms
48,608 KB
testcase_07 AC 405 ms
48,728 KB
testcase_08 AC 404 ms
48,820 KB
testcase_09 AC 416 ms
48,728 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
def bitSearch(N, P):
    dic = defaultdict(list)
    for bit in range(1<<N):
        x = bit
        S = 0
        Set = []
        for i in range(N):
            if x & 1:
                S += P[i]
                Set.append(i+1)
            x >>= 1
        dic[S].append(Set)
    return dic

N,S = map(int,input().split())
LN = N // 2
RN = N - LN
L = [int(input()) for _ in range(LN)]
R = [int(input()) for _ in range(RN)]
Ldic = bitSearch(LN, L)
Rdic = bitSearch(RN, R)
ans = []
for Lkey in Ldic.keys():
    if Rdic[S-Lkey]:
        Rkey = S - Lkey
        for x in Ldic[Lkey]:
            for y in Rdic[Rkey]:
                Set = list(x)
                for k in y:
                    Set.append(k+LN)
                ans.append(Set)
ans.sort()
for x in ans:
    print(*x)
0