結果

問題 No.15 カタログショッピング
ユーザー TawaraTawara
提出日時 2015-12-20 01:31:53
言語 PyPy2
(7.3.15)
結果
TLE  
実行時間 -
コード長 430 bytes
コンパイル時間 1,499 ms
コンパイル使用メモリ 76,860 KB
実行使用メモリ 457,468 KB
最終ジャッジ日時 2024-09-17 11:13:27
合計ジャッジ時間 8,386 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 78 ms
82,348 KB
testcase_01 AC 75 ms
75,432 KB
testcase_02 AC 93 ms
77,728 KB
testcase_03 AC 99 ms
78,112 KB
testcase_04 AC 76 ms
75,680 KB
testcase_05 TLE -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

N,S=map(int,raw_input().split())
P=[input() for i in xrange(N)]
dp = {0:0}
ans = []
while dp:
	tmp_dp = {}
	for k,v in dp.iteritems():
		for j in xrange(N):
			jbit = 1<<j
			nk = k+jbit
			if k&jbit != 0 or nk in tmp_dp:continue
			nv = v+P[j]
			if nv < S: tmp_dp[nk] = nv
			elif nv == S: ans.append(nk)
	dp = tmp_dp
ans = [" ".join(str(i+1) for i in xrange(N) if (1<<i)&s) for s in set(ans)]
for a in sorted(set(ans)): print a
0