結果

問題 No.15 カタログショッピング
ユーザー uafr_csuafr_cs
提出日時 2015-10-12 01:09:34
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 1,226 bytes
コンパイル時間 2,251 ms
コンパイル使用メモリ 78,716 KB
実行使用メモリ 51,572 KB
最終ジャッジ日時 2024-07-21 07:06:37
合計ジャッジ時間 19,392 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
41,244 KB
testcase_01 AC 140 ms
40,780 KB
testcase_02 AC 140 ms
41,120 KB
testcase_03 AC 174 ms
41,228 KB
testcase_04 AC 139 ms
40,780 KB
testcase_05 AC 923 ms
46,760 KB
testcase_06 AC 3,958 ms
45,784 KB
testcase_07 AC 4,804 ms
46,948 KB
testcase_08 TLE -
testcase_09 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.HashSet;
import java.util.LinkedList;
import java.util.Scanner;
import java.util.Set;

public class Main {

	public static void dfs(final long S, final int N, final int deep, int[] items, int[] maximum, LinkedList<Integer> stack){
		if(S == 0){
			//
			boolean first = true;
			
			for(final int item : stack){
				if(first){
					first = false;
				}else{
					System.out.print(" ");
				}
				
				System.out.print(item + 1);
			}
			System.out.println();
			
			return;
		}else if(deep >= N){
			return;
		}else if(maximum[deep] < S){
			return;
		}
		
		if(S >= items[deep]){
			stack.addLast(deep);
			dfs(S - items[deep], N, deep + 1, items, maximum, stack);
			stack.removeLast();
		}
		dfs(S, N, deep + 1, items, maximum, stack);
	}
	
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		
		final int N = sc.nextInt();
		final long S = sc.nextLong();
		
		int[] items = new int[N];
		for(int i = 0; i < N; i++){
			items[i] = sc.nextInt();
		}
		
		int[] maximum = new int[N];
		for(int i = N - 1; i >= 0; i--){
			maximum[i] = items[i] + (i == N - 1 ? 0 : maximum[i + 1]);
		}
		
		dfs(S, N, 0, items, maximum, new LinkedList<Integer>());
	}

}
0