結果

問題 No.2488 Mod Sum Maximization
ユーザー shiomusubi496shiomusubi496
提出日時 2023-09-29 11:55:53
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 280 ms / 2,000 ms
コード長 1,533 bytes
コンパイル時間 2,234 ms
コンパイル使用メモリ 210,432 KB
実行使用メモリ 57,552 KB
最終ジャッジ日時 2024-07-22 14:54:15
合計ジャッジ時間 9,160 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 3 ms
6,940 KB
testcase_03 AC 236 ms
57,552 KB
testcase_04 AC 244 ms
57,476 KB
testcase_05 AC 242 ms
57,528 KB
testcase_06 AC 231 ms
54,588 KB
testcase_07 AC 160 ms
39,808 KB
testcase_08 AC 231 ms
55,724 KB
testcase_09 AC 174 ms
42,752 KB
testcase_10 AC 133 ms
33,496 KB
testcase_11 AC 10 ms
8,048 KB
testcase_12 AC 121 ms
31,008 KB
testcase_13 AC 93 ms
25,660 KB
testcase_14 AC 26 ms
11,184 KB
testcase_15 AC 143 ms
35,392 KB
testcase_16 AC 12 ms
8,276 KB
testcase_17 AC 44 ms
15,420 KB
testcase_18 AC 17 ms
9,240 KB
testcase_19 AC 193 ms
45,772 KB
testcase_20 AC 211 ms
51,596 KB
testcase_21 AC 200 ms
47,764 KB
testcase_22 AC 225 ms
55,088 KB
testcase_23 AC 238 ms
56,524 KB
testcase_24 AC 85 ms
23,392 KB
testcase_25 AC 9 ms
7,760 KB
testcase_26 AC 14 ms
8,760 KB
testcase_27 AC 148 ms
31,444 KB
testcase_28 AC 161 ms
31,984 KB
testcase_29 AC 150 ms
31,012 KB
testcase_30 AC 93 ms
21,816 KB
testcase_31 AC 21 ms
10,012 KB
testcase_32 AC 241 ms
45,184 KB
testcase_33 AC 7 ms
7,232 KB
testcase_34 AC 280 ms
55,188 KB
testcase_35 AC 82 ms
21,116 KB
testcase_36 AC 3 ms
6,940 KB
testcase_37 AC 3 ms
6,940 KB
testcase_38 AC 3 ms
6,944 KB
testcase_39 AC 3 ms
6,940 KB
testcase_40 AC 3 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

#define rep(i, n) for (int i = 0; i < (int)(n); ++i)
#define rrep(i, n) for (int i = (int)(n) - 1; i >= 0; --i)

using namespace std;

using ll = long long;
void chmin(ll& a, ll b) { if (a > b) a = b; }

class SparseTable {
private:
    int n, lg;
    vector<vector<ll>> dat;

public:
    SparseTable(int n_) : n(n_) {
        lg = 0;
        while ((1 << lg) < n) ++lg;
        dat.assign(lg + 1, vector<ll>(n, 1e18));
    }
    void set(int k, ll x) {
        dat[0][k] = x;
        rep (i, lg) {
            if (k + (1 << i) >= n) break;
            dat[i + 1][k] = min(dat[i][k], dat[i][k + (1 << i)]);
        }
    }
    ll get(int k) {
        return dat[0][k];
    }
    ll prod(int l, int r) {
        if (l >= r) return 1e18;
        int h = __lg(r - l);
        return min(dat[h][l], dat[h][r - (1 << h)]);
    }
};

int main() {
    int N; cin >> N;
    vector<int> A(N);
    rep (i, N) cin >> A[i];

    const int M = A[N - 1];

    vector<int> idx(M + 1, N);
    rep (i, N) idx[A[i]] = i;
    rrep (i, M + 1) {
        if (idx[i] == N) idx[i] = idx[i + 1];
    }

    SparseTable seg(N);
    seg.set(N - 1, 0);
    rrep (i, N - 1) {
        int j = i + 1;
        ll mn = 1e18;
        while (j != N) {
            int p = A[j] / A[i];
            int k = (p + 1) * A[i] > M ? N : idx[(p + 1) * A[i]];
            chmin(mn, seg.prod(j, k) + p * A[i]);
            j = k;
        }
        seg.set(i, mn);
    }

    ll sm = 0;
    rep (i, N) sm += A[i];
    cout << sm - seg.get(0) << endl;
}
0