結果

問題 No.393 2本の竹
ユーザー ぴろずぴろず
提出日時 2016-07-12 21:17:12
言語 Java21
(openjdk 21)
結果
AC  
実行時間 468 ms / 1,000 ms
コード長 984 bytes
コンパイル時間 2,020 ms
コンパイル使用メモリ 76,980 KB
実行使用メモリ 42,928 KB
最終ジャッジ日時 2024-11-08 05:43:21
合計ジャッジ時間 9,295 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 178 ms
41,744 KB
testcase_01 AC 155 ms
41,436 KB
testcase_02 AC 168 ms
41,860 KB
testcase_03 AC 184 ms
41,964 KB
testcase_04 AC 156 ms
41,512 KB
testcase_05 AC 175 ms
41,784 KB
testcase_06 AC 154 ms
41,664 KB
testcase_07 AC 183 ms
41,700 KB
testcase_08 AC 193 ms
42,204 KB
testcase_09 AC 460 ms
42,872 KB
testcase_10 AC 267 ms
42,256 KB
testcase_11 AC 302 ms
42,400 KB
testcase_12 AC 311 ms
42,500 KB
testcase_13 AC 278 ms
42,380 KB
testcase_14 AC 256 ms
42,616 KB
testcase_15 AC 190 ms
41,588 KB
testcase_16 AC 244 ms
41,580 KB
testcase_17 AC 186 ms
41,616 KB
testcase_18 AC 181 ms
41,616 KB
testcase_19 AC 150 ms
41,536 KB
testcase_20 AC 148 ms
41,128 KB
testcase_21 AC 180 ms
41,648 KB
testcase_22 AC 299 ms
42,308 KB
testcase_23 AC 272 ms
42,612 KB
testcase_24 AC 183 ms
41,656 KB
testcase_25 AC 180 ms
41,620 KB
testcase_26 AC 163 ms
41,428 KB
testcase_27 AC 468 ms
42,928 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package no393;

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(int i=0;i<d;i++) {
			solve();
		}
	}
	
	public static int LMAX = 100000;
	static boolean[] dp = new boolean[LMAX+1];
	public static void solve() {
		int l1 = sc.nextInt();
		int l2 = sc.nextInt();
		int n = sc.nextInt();
		int[] a = new int[n];
		for(int i=0;i<n;i++) {
			a[i] = sc.nextInt();
		}
		Arrays.sort(a);
		int l = 0;
		int r = n + 1;
		while(l + 1 < r) {
			int c = (l + r) / 2;
			Arrays.fill(dp, false);
			dp[0] = true;
			int sum = 0;
			for(int i=0;i<c;i++) {
				sum += a[i];
				for(int j=l1;j>=a[i];j--) {
					dp[j] |= dp[j-a[i]];
				}
			}
			boolean flag = false;
			for(int i=l1;i>=0;i--) {
				if (dp[i]) {
					flag = sum - i <= l2;
					break;
				}
			}
			if (flag) {
				l = c;
			}else{
				r = c;
			}
		}
		System.out.println(l);
	}

}
0