結果

問題 No.710 チーム戦
ユーザー 👑 CleyLCleyL
提出日時 2022-11-08 15:00:32
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 51 ms / 3,000 ms
コード長 546 bytes
コンパイル時間 661 ms
コンパイル使用メモリ 69,120 KB
実行使用メモリ 43,008 KB
最終ジャッジ日時 2024-07-21 23:22:00
合計ジャッジ時間 2,638 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
5,248 KB
testcase_01 AC 4 ms
5,632 KB
testcase_02 AC 40 ms
42,752 KB
testcase_03 AC 38 ms
42,880 KB
testcase_04 AC 40 ms
42,868 KB
testcase_05 AC 40 ms
42,752 KB
testcase_06 AC 39 ms
42,880 KB
testcase_07 AC 40 ms
42,880 KB
testcase_08 AC 40 ms
42,752 KB
testcase_09 AC 51 ms
42,884 KB
testcase_10 AC 39 ms
42,880 KB
testcase_11 AC 40 ms
42,920 KB
testcase_12 AC 39 ms
42,880 KB
testcase_13 AC 39 ms
42,880 KB
testcase_14 AC 39 ms
42,880 KB
testcase_15 AC 39 ms
42,880 KB
testcase_16 AC 39 ms
42,880 KB
testcase_17 AC 40 ms
42,948 KB
testcase_18 AC 45 ms
42,932 KB
testcase_19 AC 39 ms
43,008 KB
testcase_20 AC 39 ms
42,860 KB
testcase_21 AC 38 ms
42,880 KB
testcase_22 AC 38 ms
42,880 KB
testcase_23 AC 41 ms
42,956 KB
testcase_24 AC 40 ms
42,880 KB
testcase_25 AC 3 ms
5,376 KB
testcase_26 AC 3 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
using namespace std;

int dp[101][100001];

int main(){
  int n;cin>>n;
  for(int i = 0; n >= i; i++){
    for(int j = 0; 100000 >= j; j++){
      dp[i][j] = 100001;
    }
  }
  dp[0][0] = 0;
  for(int i = 0; n > i; i++){
    int a,b;cin>>a>>b;
    for(int j = 0; 100000 > j; j++){
      if(j+a <= 100000)dp[i+1][j+a] = min(dp[i+1][j+a],dp[i][j]);
      dp[i+1][j] = min(dp[i+1][j],dp[i][j]+b);
    }
  }
  int ans = 100000;
  for(int i = 0; 100000 >= i; i++){
    ans = min(ans,max(i,dp[n][i]));
  }
  cout << ans << endl;
}
0