結果
問題 | No.710 チーム戦 |
ユーザー | 👑 CleyL |
提出日時 | 2022-11-08 14:49:36 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 588 bytes |
コンパイル時間 | 519 ms |
コンパイル使用メモリ | 69,852 KB |
実行使用メモリ | 42,496 KB |
最終ジャッジ日時 | 2024-07-21 23:12:53 |
合計ジャッジ時間 | 8,090 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 16 ms
42,496 KB |
testcase_01 | AC | 18 ms
42,496 KB |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | AC | 16 ms
42,364 KB |
testcase_26 | AC | 15 ms
42,496 KB |
ソースコード
#include <iostream> using namespace std; int dp[100][100001]; int main(){ int n;cin>>n; for(int i = 0; 100 > 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(!dp[i][j] && i+j != 0)continue; 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; }