結果

問題 No.15 カタログショッピング
ユーザー pluto77pluto77
提出日時 2018-07-29 08:52:22
言語 Python2
(2.7.18)
結果
AC  
実行時間 225 ms / 5,000 ms
コード長 581 bytes
コンパイル時間 42 ms
コンパイル使用メモリ 6,912 KB
実行使用メモリ 30,284 KB
最終ジャッジ日時 2024-07-08 05:54:43
合計ジャッジ時間 1,998 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 12 ms
6,528 KB
testcase_01 AC 12 ms
6,528 KB
testcase_02 AC 12 ms
6,656 KB
testcase_03 AC 13 ms
6,784 KB
testcase_04 AC 12 ms
6,528 KB
testcase_05 AC 218 ms
30,232 KB
testcase_06 AC 223 ms
30,284 KB
testcase_07 AC 225 ms
30,164 KB
testcase_08 AC 225 ms
30,232 KB
testcase_09 AC 223 ms
30,252 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#yuki15
from collections import defaultdict as dd
from itertools import combinations as comb

n,s=map(int,raw_input().split())
p=[]
for i in xrange(n):
 p.append(int(raw_input()))

res=[]
dic=dd(list)
for i in xrange(1,n/2+1):
 for s1 in comb(range(n/2),i):
  t=sum(p[j] for j in s1)
  if t==s:
   res.append(s1)
  dic[t].append(s1)
for i in xrange(1,n-n/2+1):
 for s2 in comb(range(n/2,n),i):
  t=sum(p[j] for j in s2)
  if t==s:
   res.append(s2)
  for s1 in dic[s-t]:
   res.append(s1+s2)
res=[[i+1 for i in s] for s in res]
res.sort()
for s in res:
 print " ".join(map(str,s))
0