結果

問題 No.393 2本の竹
ユーザー 37zigen37zigen
提出日時 2016-07-03 20:51:03
言語 Java21
(openjdk 21)
結果
AC  
実行時間 172 ms / 1,000 ms
コード長 2,094 bytes
コンパイル時間 2,174 ms
コンパイル使用メモリ 79,016 KB
実行使用メモリ 55,884 KB
最終ジャッジ日時 2024-04-25 18:05:54
合計ジャッジ時間 5,424 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 61 ms
53,280 KB
testcase_01 AC 56 ms
53,016 KB
testcase_02 AC 59 ms
52,972 KB
testcase_03 AC 58 ms
52,732 KB
testcase_04 AC 57 ms
52,984 KB
testcase_05 AC 56 ms
52,632 KB
testcase_06 AC 55 ms
53,028 KB
testcase_07 AC 59 ms
53,248 KB
testcase_08 AC 68 ms
53,064 KB
testcase_09 AC 150 ms
55,884 KB
testcase_10 AC 114 ms
55,272 KB
testcase_11 AC 117 ms
55,476 KB
testcase_12 AC 131 ms
55,772 KB
testcase_13 AC 120 ms
55,356 KB
testcase_14 AC 102 ms
55,052 KB
testcase_15 AC 72 ms
52,904 KB
testcase_16 AC 82 ms
54,920 KB
testcase_17 AC 70 ms
53,128 KB
testcase_18 AC 56 ms
53,084 KB
testcase_19 AC 53 ms
53,128 KB
testcase_20 AC 55 ms
52,772 KB
testcase_21 AC 55 ms
52,960 KB
testcase_22 AC 128 ms
55,512 KB
testcase_23 AC 112 ms
55,256 KB
testcase_24 AC 63 ms
53,360 KB
testcase_25 AC 57 ms
52,576 KB
testcase_26 AC 55 ms
52,948 KB
testcase_27 AC 172 ms
55,652 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.io.PrintStream;
import java.io.PrintWriter;
import java.util.Arrays;
import java.util.Iterator;

public class Main {
	public static Scanner sc=new Scanner(System.in);
	public static Printer pr=new Printer(System.out);
	public static void main(String[] args) {
		int d = sc.nextInt();
		for(;d>0;d--){
			new Main().solver();
		}
		pr.close();
	}

	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 <= n1; 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){
				pr.println(i);
				return;
			}
		}
		pr.println(m);
	}
	
	void tr(Object...o){System.out.println(Arrays.deepToString(o));}
	private static class Scanner{
		BufferedReader br;
		Iterator<String> it;
		Scanner(InputStream in){
			br=new BufferedReader(new InputStreamReader(in));
		}
		String next()throws RuntimeException{
			try{
				if(it==null||!it.hasNext())
					it=Arrays.asList(br.readLine().split(" ")).iterator();
				return it.next();
			}catch(IOException e){
				throw new IllegalStateException();
			}
		}
		int nextInt() throws RuntimeException{
			return Integer.parseInt(next());
		}
		long nextLong() throws RuntimeException{
			return Long.parseLong(next());
		}
		double nextDouble() throws RuntimeException{
			return Double.parseDouble(next());
		}
		void close(){
			try{
				br.close();
			}catch(IOException e){
				throw new IllegalStateException();
			}
		}
	}
	private static class Printer extends PrintWriter{
		Printer(PrintStream out){
			super(out);
		}
	}
}
0