結果

問題 No.1583 Building Blocks
ユーザー the-xinthe-xin
提出日時 2021-07-03 14:09:49
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 22 ms / 2,000 ms
コード長 648 bytes
コンパイル時間 769 ms
コンパイル使用メモリ 71,568 KB
実行使用メモリ 74,524 KB
最終ジャッジ日時 2024-09-14 02:51:27
合計ジャッジ時間 2,955 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 20 ms
74,432 KB
testcase_01 AC 20 ms
74,376 KB
testcase_02 AC 20 ms
74,416 KB
testcase_03 AC 20 ms
74,340 KB
testcase_04 AC 20 ms
74,376 KB
testcase_05 AC 20 ms
74,264 KB
testcase_06 AC 20 ms
74,292 KB
testcase_07 AC 21 ms
74,312 KB
testcase_08 AC 20 ms
74,292 KB
testcase_09 AC 22 ms
74,432 KB
testcase_10 AC 20 ms
74,256 KB
testcase_11 AC 20 ms
74,264 KB
testcase_12 AC 20 ms
74,320 KB
testcase_13 AC 21 ms
74,216 KB
testcase_14 AC 21 ms
74,284 KB
testcase_15 AC 20 ms
74,336 KB
testcase_16 AC 22 ms
74,344 KB
testcase_17 AC 21 ms
74,376 KB
testcase_18 AC 20 ms
74,356 KB
testcase_19 AC 22 ms
74,332 KB
testcase_20 AC 21 ms
74,272 KB
testcase_21 AC 20 ms
74,252 KB
testcase_22 AC 20 ms
74,344 KB
testcase_23 AC 20 ms
74,356 KB
testcase_24 AC 20 ms
74,244 KB
testcase_25 AC 20 ms
74,376 KB
testcase_26 AC 21 ms
74,232 KB
testcase_27 AC 20 ms
74,208 KB
testcase_28 AC 21 ms
74,312 KB
testcase_29 AC 21 ms
74,440 KB
testcase_30 AC 20 ms
74,272 KB
testcase_31 AC 22 ms
74,412 KB
testcase_32 AC 22 ms
74,200 KB
testcase_33 AC 22 ms
74,492 KB
testcase_34 AC 20 ms
74,248 KB
testcase_35 AC 20 ms
74,412 KB
testcase_36 AC 22 ms
74,232 KB
testcase_37 AC 22 ms
74,524 KB
testcase_38 AC 20 ms
74,272 KB
testcase_39 AC 20 ms
74,240 KB
testcase_40 AC 20 ms
74,364 KB
testcase_41 AC 20 ms
74,224 KB
testcase_42 AC 20 ms
74,304 KB
testcase_43 AC 21 ms
74,360 KB
testcase_44 AC 20 ms
74,348 KB
testcase_45 AC 21 ms
74,348 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<cstring>
#include<algorithm>
using namespace std;
typedef long long LL;
const int N = 3e3+10,mod = 1e9+7;
LL f[N][N];
struct Node{
	LL a,b;
	bool operator<(const Node &A)const{
		return a+b<A.a+A.b;
	}
}a[N];
int main(){
	int n;
	scanf("%d",&n);
	for(int i=1;i<=n;i++){
		scanf("%d%d",&a[i].a,&a[i].b);
	}
	sort(a+1,a+1+n);
	memset(f,0x3f,sizeof f);
	f[0][0]=0;
	LL INF = f[1][1];
	int ans=0;
	for(int i=1;i<=n;i++){
		f[i][0]=0;
		for(int j=1;j<=i;j++){
			f[i][j]=min(f[i-1][j],f[i][j]);
			if(a[i].b>=f[i-1][j-1]){
				f[i][j]=min(f[i][j],f[i-1][j-1]+a[i].a);
				ans=max(ans,j);
			}
		}
	}
	cout<<ans;
	return 0;
}
0