結果

問題 No.393 2本の竹
ユーザー 37zigen37zigen
提出日時 2016-07-03 20:15:13
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 1,001 bytes
コンパイル時間 1,972 ms
コンパイル使用メモリ 78,036 KB
実行使用メモリ 57,436 KB
最終ジャッジ日時 2024-10-15 01:00:42
合計ジャッジ時間 7,390 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 150 ms
45,700 KB
testcase_01 AC 138 ms
44,908 KB
testcase_02 AC 142 ms
45,716 KB
testcase_03 AC 147 ms
45,604 KB
testcase_04 AC 138 ms
45,700 KB
testcase_05 AC 147 ms
45,488 KB
testcase_06 AC 138 ms
45,564 KB
testcase_07 AC 168 ms
45,548 KB
testcase_08 AC 183 ms
45,968 KB
testcase_09 RE -
testcase_10 RE -
testcase_11 RE -
testcase_12 RE -
testcase_13 AC 195 ms
46,116 KB
testcase_14 AC 181 ms
45,948 KB
testcase_15 RE -
testcase_16 RE -
testcase_17 AC 153 ms
45,488 KB
testcase_18 AC 143 ms
45,788 KB
testcase_19 AC 135 ms
44,932 KB
testcase_20 AC 134 ms
45,704 KB
testcase_21 AC 143 ms
45,428 KB
testcase_22 RE -
testcase_23 RE -
testcase_24 AC 173 ms
46,036 KB
testcase_25 AC 142 ms
45,524 KB
testcase_26 AC 135 ms
44,936 KB
testcase_27 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.Scanner;

public class Main {
	public static Scanner sc=new Scanner(System.in);

	public static void main(String[] args) {
		int d = sc.nextInt();
		for(;d>0;d--){
			new Main().solver();
		}
	}

	void solver() {
		int n1 = sc.nextInt();
		int n2 = sc.nextInt();
		int m = sc.nextInt();
		int[] a = new int[m];
		for (int i = 0; i < m; i++) {
			a[i] = sc.nextInt();

		}
		Arrays.sort(a);
		

		boolean[] from = new boolean[n1 + 1];
		from[0] = true;
		int len = 0;
		for (int i = 0; i < m; i++) {
			boolean[] to = new boolean[100001];
			boolean f=false;
			for (int j = 0; j <= len; j++) {
				if (from[j]) {
					if (j + a[i] <= n1) {
						to[j + a[i]] = true;
						f=true;
					}
					if ((len - j) + a[i] <= n2) {
						to[j] = true;
						f=true;
					}
				}
			}
			len+=a[i];
			from=to;

			if(!f){
				System.out.println(i);
				return;
			}
		}
		System.out.println(m);
	}
	
	void tr(Object...o){System.out.println(Arrays.deepToString(o));}
}
0