結果

問題 No.393 2本の竹
ユーザー vjudge1vjudge1
提出日時 2024-11-10 14:11:09
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 3 ms / 1,000 ms
コード長 441 bytes
コンパイル時間 1,896 ms
コンパイル使用メモリ 170,296 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-10 14:11:12
合計ジャッジ時間 2,602 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
int a[1005];
int main(){
	int T;
	scanf("%d",&T);
	while(T--){
		int n1,n2,m;
		scanf("%d%d%d",&n1,&n2,&m);
		for(int i=1;i<=m;++i)scanf("%d",&a[i]);
		sort(a+1,a+m+1);
		bitset<100005>bs;
		bs[1]=1;
		int ans=0,he=0;
		for(int i=1;i<=m;++i){
			bs|=bs<<a[i];he+=a[i];
			if(he>n1+n2)break;
			if((signed)bs._Find_next(max(0,he-n2))>n1+1)break;
			ans=i;
		}
		printf("%d\n",ans);
	}
	return 0;
}
0