結果

問題 No.393 2本の竹
ユーザー btkbtk
提出日時 2016-07-12 00:43:11
言語 C++14
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 40 ms / 1,000 ms
コード長 533 bytes
コンパイル時間 1,620 ms
コンパイル使用メモリ 170,216 KB
実行使用メモリ 4,380 KB
最終ジャッジ日時 2023-08-07 23:58:45
合計ジャッジ時間 2,979 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,376 KB
testcase_01 AC 2 ms
4,380 KB
testcase_02 AC 2 ms
4,380 KB
testcase_03 AC 2 ms
4,376 KB
testcase_04 AC 2 ms
4,376 KB
testcase_05 AC 2 ms
4,376 KB
testcase_06 AC 1 ms
4,376 KB
testcase_07 AC 1 ms
4,376 KB
testcase_08 AC 2 ms
4,376 KB
testcase_09 AC 40 ms
4,376 KB
testcase_10 AC 15 ms
4,380 KB
testcase_11 AC 20 ms
4,376 KB
testcase_12 AC 21 ms
4,376 KB
testcase_13 AC 15 ms
4,380 KB
testcase_14 AC 10 ms
4,376 KB
testcase_15 AC 5 ms
4,376 KB
testcase_16 AC 11 ms
4,380 KB
testcase_17 AC 1 ms
4,376 KB
testcase_18 AC 2 ms
4,376 KB
testcase_19 AC 2 ms
4,376 KB
testcase_20 AC 2 ms
4,376 KB
testcase_21 AC 2 ms
4,376 KB
testcase_22 AC 26 ms
4,380 KB
testcase_23 AC 14 ms
4,376 KB
testcase_24 AC 3 ms
4,376 KB
testcase_25 AC 2 ms
4,376 KB
testcase_26 AC 1 ms
4,376 KB
testcase_27 AC 33 ms
4,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>

using namespace std;
struct INIT{INIT(){ios::sync_with_stdio(false);cin.tie(0);}}init;
int main(){
    int T;
    cin>>T;
    while(T--){
	int L,R,N;
	cin>>L>>R>>N;
	vector<int> a(N);
	for(auto &it:a)cin>>it;
	sort(a.begin(),a.end());
	int sum=0;
	int res=0;
	vector<int> dp(L+1,0);
	dp[0]=1;
	for(int i=0;i<N;i++){
	    sum+=a[i];
	    for(int j=L;j>=a[i];j--){
		dp[j]|=dp[j-a[i]];
	    }
	    for(int j=0;j<=L;j++)
		if(dp[j]==1&&sum-j<=R)
		    res=i+1;
	}
	cout<<res<<endl;

    }
    return 0;
}

    
0