結果

問題 No.710 チーム戦
ユーザー rapurasurapurasu
提出日時 2018-07-13 10:00:20
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 16 ms / 3,000 ms
コード長 800 bytes
コンパイル時間 1,533 ms
コンパイル使用メモリ 159,704 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-04-16 11:30:55
合計ジャッジ時間 2,807 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
#define FOR(i,a,b) for (int i=(a);i<(b);i++)
#define RFOR(i,a,b) for (int i=(b)-1;i>=(a);i--)
#define REP(i,n) for (int i=0;i<(n);i++)
#define RREP(i,n) for (int i=(n)-1;i>=0;i--)
typedef long long LL;
int N;
int A[101];
int B[101];
int dp[100011];
int pre[100011];
int main(){
	cin>>N;
	int s=0;
	REP(i,N){
		cin>>A[i]>>B[i];
		s+=B[i];
	}
	REP(i,100011){
		dp[i]=s;
	}
	//cout<<s<<endl;
	REP(i,N){
		REP(j,100011){
			pre[j]=dp[j];
		}
		REP(j,100011){
			if(j+A[i]<100001){
				dp[j+A[i]]=min(dp[j+A[i]],pre[j]-B[i]);
			}
		}
		/*REP(j,101){
			cout<<dp[j]<<endl;
		}
		cout<<"end"<<endl;*/
	}
	
	int ans=1e7;
	REP(i,100011){
		/*if(ans>max(dp[i],i)){
			cout<<i<<" "<<dp[i]<<endl;
		}*/
		ans=min(ans,max(dp[i],i));
	}
	cout<<ans<<endl;
	return(0);
}
0