結果

問題 No.2880 Max Sigma Mod
ユーザー SnowBeenDidingSnowBeenDiding
提出日時 2024-09-08 13:13:23
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 14 ms / 3,000 ms
コード長 1,626 bytes
コンパイル時間 5,414 ms
コンパイル使用メモリ 307,968 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-09-08 13:13:31
合計ジャッジ時間 7,553 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 10 ms
6,816 KB
testcase_01 AC 9 ms
6,940 KB
testcase_02 AC 9 ms
6,940 KB
testcase_03 AC 9 ms
6,944 KB
testcase_04 AC 8 ms
6,940 KB
testcase_05 AC 13 ms
6,940 KB
testcase_06 AC 12 ms
6,940 KB
testcase_07 AC 13 ms
6,940 KB
testcase_08 AC 13 ms
6,944 KB
testcase_09 AC 12 ms
6,944 KB
testcase_10 AC 11 ms
6,940 KB
testcase_11 AC 14 ms
6,944 KB
testcase_12 AC 10 ms
6,944 KB
testcase_13 AC 13 ms
6,940 KB
testcase_14 AC 13 ms
6,940 KB
testcase_15 AC 14 ms
6,944 KB
testcase_16 AC 13 ms
6,940 KB
testcase_17 AC 14 ms
6,944 KB
testcase_18 AC 13 ms
6,940 KB
testcase_19 AC 14 ms
6,944 KB
testcase_20 AC 13 ms
6,944 KB
testcase_21 AC 13 ms
6,944 KB
testcase_22 AC 13 ms
6,940 KB
testcase_23 AC 13 ms
6,940 KB
testcase_24 AC 13 ms
6,940 KB
testcase_25 AC 13 ms
6,944 KB
testcase_26 AC 13 ms
6,944 KB
testcase_27 AC 14 ms
6,944 KB
testcase_28 AC 13 ms
6,944 KB
testcase_29 AC 13 ms
6,940 KB
testcase_30 AC 5 ms
6,940 KB
testcase_31 AC 5 ms
6,944 KB
testcase_32 AC 14 ms
6,940 KB
testcase_33 AC 5 ms
6,940 KB
testcase_34 AC 5 ms
6,944 KB
testcase_35 AC 5 ms
6,944 KB
testcase_36 AC 14 ms
6,940 KB
testcase_37 AC 5 ms
6,944 KB
testcase_38 AC 5 ms
6,944 KB
testcase_39 AC 5 ms
6,940 KB
testcase_40 AC 5 ms
6,940 KB
testcase_41 AC 13 ms
6,940 KB
testcase_42 AC 4 ms
6,940 KB
testcase_43 AC 5 ms
6,940 KB
testcase_44 AC 5 ms
6,940 KB
testcase_45 AC 5 ms
6,940 KB
testcase_46 AC 6 ms
6,944 KB
testcase_47 AC 13 ms
6,944 KB
testcase_48 AC 5 ms
6,940 KB
testcase_49 AC 10 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <atcoder/all>
#include <bits/stdc++.h>
#define rep(i, a, b) for (ll i = (ll)(a); i < (ll)(b); i++)
using namespace atcoder;
using namespace std;

typedef long long ll;
struct RangeAPQuery {
    int n;
    vector<ll> v, pre;

    RangeAPQuery(int input) {
        n = input;
        v.resize(n);
        pre.resize(n + 2);
    }
    void add(ll l, ll r, ll a0, ll d) {
        // 初項 a0, 等差 d
        // [l, r] <- +{an}
        if (l > r)
            return;
        assert(l <= r);
        pre[l] += a0;
        pre[l + 1] += d - a0;
        pre[r + 1] -= a0 + d * (r - l + 1);
        pre[r + 2] += a0 + d * (r - l + 1) - d;
    }
    void addr(ll l, ll r, ll a0, ll d) {
        // 初項 a0, 等差 d
        // [l, r] <- +{an(rev)}
        if (l > r)
            swap(l, r);
        add(l, r, (r - l) * d + a0, -d);
    }
    void make() {
        rep(i, 0, pre.size() - 1) pre[i + 1] += pre[i];
        rep(i, 0, pre.size() - 1) pre[i + 1] += pre[i];
        rep(i, 0, n) {
            v[i] += pre[i];
            pre[i] = 0;
        }
    }
    ll get(int ind) { return v[ind]; }
};

int main() {
    int n, m;
    cin >> n >> m;

    RangeAPQuery raq(200010);

    rep(d, 2, m + 1) {
        int ind = 0;
        while (1) {
            int l = ind, r = ind + d;
            if (r >= 200005)
                r = 200005;
            if (l > r)
                break;
            raq.add(l, r - 1, 0, 1);
            ind += d;
        }
    }
    raq.make();
    ll ans = 0;
    rep(i, 0, n + 1) {
        ans = max(ans, raq.get(i));
        // cerr << raq.get(i) << " ";
    }
    cout << ans << endl;
}
0