結果
問題 | No.710 チーム戦 |
ユーザー |
|
提出日時 | 2018-10-31 15:53:33 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 11 ms / 3,000 ms |
コード長 | 480 bytes |
コンパイル時間 | 674 ms |
コンパイル使用メモリ | 65,272 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-11-19 12:24:53 |
合計ジャッジ時間 | 1,769 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 25 |
ソースコード
#include<iostream>#include<numeric>using namespace std;int main(){int n;cin >> n;int a[n], b[n];for(int i = 0; i < n; i++) cin >> a[i] >> b[i];int dp[100001] = {};for(int i = 0; i < n; i++){for(int j = 100001; j >= a[i]; j--){dp[j] = max(dp[j], dp[j-a[i]] + b[i]);}}int ans = 100001;int bsum = accumulate(b, b+n, 0);for(int i = 0; i < 100001; i++){ans = min(ans, max(i, bsum-dp[i]));}cout << ans << endl;return 0;}