結果

問題 No.54 Happy Hallowe'en
ユーザー Akidai16Akidai16
提出日時 2023-04-27 02:39:03
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 43 ms / 5,000 ms
コード長 1,130 bytes
コンパイル時間 3,265 ms
コンパイル使用メモリ 235,912 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-04-28 01:57:02
合計ジャッジ時間 4,268 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 1 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 8 ms
6,944 KB
testcase_05 AC 13 ms
6,944 KB
testcase_06 AC 17 ms
6,944 KB
testcase_07 AC 25 ms
6,940 KB
testcase_08 AC 33 ms
6,940 KB
testcase_09 AC 43 ms
6,940 KB
testcase_10 AC 1 ms
6,940 KB
testcase_11 AC 2 ms
6,940 KB
testcase_12 AC 41 ms
6,940 KB
testcase_13 AC 42 ms
6,940 KB
testcase_14 AC 2 ms
6,940 KB
testcase_15 AC 2 ms
6,944 KB
testcase_16 AC 1 ms
6,944 KB
testcase_17 AC 1 ms
6,940 KB
testcase_18 AC 2 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using namespace atcoder;
using ll = long long;
constexpr ll mod = 1e9 + 7;
constexpr ll INF = 1LL << 60;

#define REP(i, init, n) for(int i = (int)(init); i < (int)(n); i++)
#define RREP(i, init, n) for(int i = (int)(init); i >= (int)(n); i--)
#define All(A) A.begin(), A.end()
#define rAll(A) A.rbegin(), A.rend()

#define vi vector<int>
#define vl vector<long>
#define vvi vector<vector<int>>
#define vvl vector<vector<long>>
#define pint pair<int, int>
#define plong pair<long, long>

int N;
vvi V;

void solve() {
    sort(All(V));
    vi dp(20010, 0);
    dp[0] = 1;
    REP(i, 0, N) {
        int t = V[i][1];
        int v = V[i][2];
        // cout << t << " " << v << endl;
        RREP(i, t - 1, 0) {
            if(dp[i] == 1) {
                dp[i + v] = 1;
            }
        }
    }
    int ans = 0;
    REP(i, 0, 20010) {
        if(dp[i] == 1) ans = i;
    }
    cout << ans << endl;
}

int main() {
    cin >> N;
    V.resize(N);
    REP(i, 0, N) {
        int v, t;
        cin >> v >> t;
        V[i] = {v + t, t, v};
    }
    solve();
}
0