結果

問題 No.710 チーム戦
ユーザー たこしたこし
提出日時 2018-09-28 19:05:58
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 40 ms / 3,000 ms
コード長 1,210 bytes
コンパイル時間 1,907 ms
コンパイル使用メモリ 201,408 KB
実行使用メモリ 90,100 KB
最終ジャッジ日時 2024-10-12 05:25:06
合計ジャッジ時間 3,972 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
89,860 KB
testcase_01 AC 25 ms
89,976 KB
testcase_02 AC 40 ms
90,040 KB
testcase_03 AC 40 ms
90,000 KB
testcase_04 AC 40 ms
90,056 KB
testcase_05 AC 39 ms
89,992 KB
testcase_06 AC 39 ms
89,876 KB
testcase_07 AC 38 ms
90,008 KB
testcase_08 AC 39 ms
90,032 KB
testcase_09 AC 39 ms
89,896 KB
testcase_10 AC 38 ms
89,988 KB
testcase_11 AC 39 ms
89,908 KB
testcase_12 AC 39 ms
89,968 KB
testcase_13 AC 38 ms
89,892 KB
testcase_14 AC 38 ms
89,868 KB
testcase_15 AC 38 ms
90,100 KB
testcase_16 AC 38 ms
90,012 KB
testcase_17 AC 38 ms
90,064 KB
testcase_18 AC 39 ms
89,996 KB
testcase_19 AC 39 ms
90,044 KB
testcase_20 AC 40 ms
90,012 KB
testcase_21 AC 38 ms
90,004 KB
testcase_22 AC 35 ms
90,020 KB
testcase_23 AC 36 ms
90,052 KB
testcase_24 AC 40 ms
89,988 KB
testcase_25 AC 26 ms
90,028 KB
testcase_26 AC 26 ms
90,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <cstdio>
#include <string>

using namespace std;

#define INF 100000000
#define YJ 1145141919
#define INF_INT_MAX 2147483647
#define INF_LL_MAX 9223372036854775807
#define EPS 1e-10
#define MOD 1000000007
#define Pi acos(-1)
#define LL long long
#define ULL unsigned long long
#define LD long double

#define int long long

const int MAX_N = 105;
const int MAX_A = 1005;

int N;
int A[MAX_N], B[MAX_N];

int dp[MAX_N][MAX_N*MAX_A];

signed main()
{
    cin >> N;
    for(int i = 0; i < N; i++) {
        cin >> A[i] >> B[i];
    }

    for(int i = 0; i < MAX_N; i++) {
        for(int j = 0; j < MAX_N * MAX_A; j++) {
            dp[i][j] = INF;
        }
    }

    dp[0][0] = 0;
    
    for(int i = 0; i < N; i++) {
        for(int j = 0; j < MAX_N * MAX_A; j++) {
            if(dp[i][j] == INF) {
                continue;
            }
            dp[i+1][j + A[i]] = min(dp[i+1][j + A[i]], dp[i][j]);
            dp[i+1][j] = min(dp[i+1][j], dp[i][j] + B[i]);
        }
    }

    int ans = INF;
    for(int i = 0; i < MAX_N * MAX_A; i++) {
        if(dp[N][i] == INF) continue;
        ans = min(ans, max(i, dp[N][i]));
    }

    cout << ans << endl;

    return 0;
}
0