結果

問題 No.15 カタログショッピング
ユーザー ayaoniayaoni
提出日時 2020-12-04 11:55:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 138 ms / 5,000 ms
コード長 1,049 bytes
コンパイル時間 330 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 93,568 KB
最終ジャッジ日時 2024-09-14 22:12:11
合計ジャッジ時間 1,856 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
54,016 KB
testcase_01 AC 47 ms
53,760 KB
testcase_02 AC 47 ms
54,144 KB
testcase_03 AC 54 ms
62,208 KB
testcase_04 AC 46 ms
54,016 KB
testcase_05 AC 132 ms
93,184 KB
testcase_06 AC 135 ms
93,440 KB
testcase_07 AC 133 ms
93,568 KB
testcase_08 AC 138 ms
93,440 KB
testcase_09 AC 129 ms
93,440 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from collections import defaultdict
sys.setrecursionlimit(10**7)
def I(): return int(sys.stdin.readline().rstrip())
def MI(): return map(int,sys.stdin.readline().rstrip().split())
def LI(): return list(map(int,sys.stdin.readline().rstrip().split()))
def LI2(): return list(map(int,sys.stdin.readline().rstrip()))
def S(): return sys.stdin.readline().rstrip()
def LS(): return list(sys.stdin.readline().rstrip().split())
def LS2(): return list(sys.stdin.readline().rstrip())


N,S = MI()
P = [I() for _ in range(N)]

P0,P1 = P[:N//2],P[N//2:]
N0,N1 = len(P0),len(P1)

dic_P1 = defaultdict(list)
for i in range(1<<N1):
    s = 0
    for j in range(N1):
        if (i>>j) & 1:
            s += P1[N1-1-j]
    dic_P1[s].append(i)

ANS = []
for i in range(1<<N0):
    s = 0
    for j in range(N0):
        if (i>>j) & 1:
            s += P0[N0-1-j]
    if dic_P1[S-s]:
        for k in dic_P1[S-s]:
            ANS.append((i<<N1)+k)

ANS.sort(reverse=True)
for ans in ANS:
    X = [i+1 for i in range(N) if (ans >> (N-1-i)) & 1]
    print(*X)
0