結果

問題 No.710 チーム戦
ユーザー gazellegazelle
提出日時 2018-08-25 20:43:17
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 90 ms / 3,000 ms
コード長 934 bytes
コンパイル時間 2,391 ms
コンパイル使用メモリ 207,472 KB
実行使用メモリ 82,432 KB
最終ジャッジ日時 2024-06-26 20:32:07
合計ジャッジ時間 5,329 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
using ll=long long;
using ld=long double;
using P=pair<ll,ll>;
#define MOD 1000000007ll
#define INF 1000000000ll
#define EPS 1e-10
#define FOR(i,n,m) for(ll i=n;i<(ll)m;i++)
#define REP(i,n) FOR(i,0,n)
#define DUMP(a) REP(d,a.size()){cout<<a[d];if(d!=a.size()-1)cout<<" ";else cout<<endl;}
#define ALL(v) v.begin(),v.end()
#define UNIQUE(v) sort(ALL(v));v.erase(unique(ALL(v)),v.end());
#define pb push_back

int main() {
	ios::sync_with_stdio(false);
	cin.tie(0);
	ll n;
	cin>>n;
	vector<ll> a(n);
	vector<ll> b(n);
	REP(i,n) cin>>a[i]>>b[i];
	vector<vector<ll>> dp(n,vector<ll>(100010,INF*INF));
	REP(i,n) REP(j,100010) {
		if(i) {
			dp[i][j]=min(dp[i][j],dp[i-1][j]+b[i]);
			if(j>=a[i]) dp[i][j]=min(dp[i][j],dp[i-1][j-a[i]]);
		} else {
			if(j==a[i]) dp[i][j]=0;
			if(j==0) dp[i][j]=b[i];
		}
	}
	ll ans=INF*INF;
	REP(i,100010) ans=min(ans,max(i,dp[n-1][i]));
	cout<<ans<<endl;
}

0