結果

問題 No.15 カタログショッピング
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2021-04-14 11:18:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 95 ms / 5,000 ms
コード長 804 bytes
コンパイル時間 170 ms
コンパイル使用メモリ 82,268 KB
実行使用メモリ 84,352 KB
最終ジャッジ日時 2024-06-30 12:02:08
合計ジャッジ時間 1,675 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,096 KB
testcase_01 AC 37 ms
52,096 KB
testcase_02 AC 38 ms
52,096 KB
testcase_03 AC 43 ms
60,032 KB
testcase_04 AC 37 ms
51,840 KB
testcase_05 AC 89 ms
82,176 KB
testcase_06 AC 95 ms
83,440 KB
testcase_07 AC 91 ms
83,840 KB
testcase_08 AC 93 ms
84,212 KB
testcase_09 AC 91 ms
84,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,s = map(int,input().split())
P = [int(input()) for i in range(n)]

lsize = n//2
lP = P[:lsize]
rsize = n-lsize
rP = P[lsize:]

dic = {}
for i in range(1<<rsize):
    count = 0
    for j in range(rsize)[::-1]:
        if i >> j & 1:
            count += rP[rsize-1-j]
    if count <= s:
        if count in dic:
            dic[count].append(i)
        else:
            dic[count] = [i]

ans = []

for i in range(1<<lsize):
    count = 0
    for j in range(lsize)[::-1]:
        if i >> j & 1:
            count += lP[lsize-1-j]
    if count <= s:
        if s-count in dic:
            for j in dic[s-count]:
                ans.append((i<<rsize)+j)

ans.sort(reverse=True)

for i in ans:
    cand = []
    for j in range(n)[::-1]:
        if i >> j & 1:
            cand.append(n-j)
    print(*cand)
0