結果

問題 No.2880 Max Sigma Mod
ユーザー SnowBeenDidingSnowBeenDiding
提出日時 2024-09-09 01:17:10
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 12 ms / 3,000 ms
コード長 1,371 bytes
コンパイル時間 5,184 ms
コンパイル使用メモリ 309,096 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-09-09 01:17:18
合計ジャッジ時間 7,199 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 8 ms
6,812 KB
testcase_01 AC 7 ms
6,816 KB
testcase_02 AC 9 ms
6,940 KB
testcase_03 AC 8 ms
6,944 KB
testcase_04 AC 7 ms
6,944 KB
testcase_05 AC 11 ms
6,940 KB
testcase_06 AC 10 ms
6,944 KB
testcase_07 AC 11 ms
6,944 KB
testcase_08 AC 12 ms
6,944 KB
testcase_09 AC 12 ms
6,944 KB
testcase_10 AC 10 ms
6,944 KB
testcase_11 AC 11 ms
6,940 KB
testcase_12 AC 10 ms
6,940 KB
testcase_13 AC 11 ms
6,944 KB
testcase_14 AC 11 ms
6,940 KB
testcase_15 AC 11 ms
6,940 KB
testcase_16 AC 12 ms
6,944 KB
testcase_17 AC 11 ms
6,940 KB
testcase_18 AC 12 ms
6,940 KB
testcase_19 AC 11 ms
6,944 KB
testcase_20 AC 11 ms
6,940 KB
testcase_21 AC 11 ms
6,944 KB
testcase_22 AC 12 ms
6,940 KB
testcase_23 AC 11 ms
6,940 KB
testcase_24 AC 11 ms
6,940 KB
testcase_25 AC 12 ms
6,944 KB
testcase_26 AC 11 ms
6,940 KB
testcase_27 AC 11 ms
6,940 KB
testcase_28 AC 11 ms
6,940 KB
testcase_29 AC 11 ms
6,940 KB
testcase_30 AC 4 ms
6,944 KB
testcase_31 AC 5 ms
6,940 KB
testcase_32 AC 12 ms
6,940 KB
testcase_33 AC 5 ms
6,944 KB
testcase_34 AC 4 ms
6,944 KB
testcase_35 AC 5 ms
6,944 KB
testcase_36 AC 12 ms
6,940 KB
testcase_37 AC 5 ms
6,940 KB
testcase_38 AC 4 ms
6,944 KB
testcase_39 AC 4 ms
6,944 KB
testcase_40 AC 5 ms
6,940 KB
testcase_41 AC 12 ms
6,940 KB
testcase_42 AC 4 ms
6,944 KB
testcase_43 AC 5 ms
6,940 KB
testcase_44 AC 5 ms
6,944 KB
testcase_45 AC 5 ms
6,940 KB
testcase_46 AC 5 ms
6,944 KB
testcase_47 AC 12 ms
6,940 KB
testcase_48 AC 4 ms
6,944 KB
testcase_49 AC 9 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 {
    // 等差数列add, 区間sumクエリ
    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}
        assert(l <= r);
        pre[l] += a0;
        pre[l + 1] += d - a0;
        pre[r] -= a0 + d * (r - l);
        pre[r + 1] += a0 + d * (r - l) - 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, 0, 1);
            ind += d;
        }
    }
    raq.make();
    ll ans = 0;
    rep(i, 0, n + 1) { ans = max(ans, raq.get(i)); }
    cout << ans << endl;
}
0