結果

問題 No.393 2本の竹
ユーザー btkbtk
提出日時 2016-07-12 00:43:11
言語 C++14
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 52 ms / 1,000 ms
コード長 533 bytes
コンパイル時間 1,665 ms
コンパイル使用メモリ 170,004 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-04-25 18:07:35
合計ジャッジ時間 2,719 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 1 ms
6,940 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 AC 1 ms
6,944 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 1 ms
6,940 KB
testcase_06 AC 1 ms
6,940 KB
testcase_07 AC 1 ms
6,944 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 52 ms
6,940 KB
testcase_10 AC 17 ms
6,944 KB
testcase_11 AC 24 ms
6,944 KB
testcase_12 AC 24 ms
6,940 KB
testcase_13 AC 17 ms
6,940 KB
testcase_14 AC 13 ms
6,940 KB
testcase_15 AC 5 ms
6,940 KB
testcase_16 AC 14 ms
6,944 KB
testcase_17 AC 2 ms
6,944 KB
testcase_18 AC 2 ms
6,944 KB
testcase_19 AC 2 ms
6,944 KB
testcase_20 AC 1 ms
6,944 KB
testcase_21 AC 1 ms
6,948 KB
testcase_22 AC 31 ms
6,944 KB
testcase_23 AC 17 ms
6,944 KB
testcase_24 AC 2 ms
6,940 KB
testcase_25 AC 3 ms
6,940 KB
testcase_26 AC 2 ms
6,940 KB
testcase_27 AC 44 ms
6,940 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