結果

問題 No.752 mod数列
ユーザー ooaiuooaiu
提出日時 2024-12-15 18:24:31
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 277 ms / 2,000 ms
コード長 1,511 bytes
コンパイル時間 3,313 ms
コンパイル使用メモリ 249,528 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-12-15 18:24:43
合計ジャッジ時間 10,918 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
5,248 KB
testcase_01 AC 3 ms
5,248 KB
testcase_02 AC 3 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 3 ms
5,248 KB
testcase_06 AC 3 ms
5,248 KB
testcase_07 AC 3 ms
5,248 KB
testcase_08 AC 3 ms
5,248 KB
testcase_09 AC 4 ms
5,248 KB
testcase_10 AC 35 ms
5,248 KB
testcase_11 AC 18 ms
5,248 KB
testcase_12 AC 30 ms
5,248 KB
testcase_13 AC 24 ms
5,248 KB
testcase_14 AC 37 ms
5,248 KB
testcase_15 AC 168 ms
5,248 KB
testcase_16 AC 230 ms
5,248 KB
testcase_17 AC 268 ms
5,248 KB
testcase_18 AC 191 ms
5,248 KB
testcase_19 AC 211 ms
5,248 KB
testcase_20 AC 225 ms
5,248 KB
testcase_21 AC 228 ms
5,248 KB
testcase_22 AC 226 ms
5,248 KB
testcase_23 AC 248 ms
5,248 KB
testcase_24 AC 236 ms
5,248 KB
testcase_25 AC 110 ms
5,248 KB
testcase_26 AC 220 ms
5,248 KB
testcase_27 AC 157 ms
5,248 KB
testcase_28 AC 205 ms
5,248 KB
testcase_29 AC 227 ms
5,248 KB
testcase_30 AC 277 ms
5,248 KB
testcase_31 AC 2 ms
5,248 KB
testcase_32 AC 2 ms
5,248 KB
testcase_33 AC 27 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#ifndef LOCAL
#include <bits/stdc++.h>

using namespace std;

#define debug(...) (void(0))
#else
#include "algo/debug.h"
#endif

int64_t arith(int64_t a0, int64_t d, int64_t len) {
    return (2ll * a0 + (len - 1) * d) * len / 2;
}
void solve() {
    int P, Q;
    cin >> P >> Q;
    constexpr int M = 1e9 + 4;
    vector<int64_t> thr;
    vector<int64_t> sum;
    for (int64_t i = 1; i < M;) {
        int64_t lo = i, hi = M;
        while (hi > lo + 1) {
            int64_t mi = (lo + hi) / 2;
            (P / mi == P / i ? lo : hi) = mi;
        }
        thr.push_back(i);
        sum.push_back(arith(P % i, -P / i, lo - i + 1));
        if (i == hi) break;
        i = hi;
    }
    vector<int64_t> pref(sum.size() + 1);
    for (unsigned i{}; i < sum.size(); i++) pref[i + 1] = pref[i] + sum[i];
    const auto g = [&](int r) -> int64_t {
        if(r <= 0) return 0;
        int hi = r, lo = 0;
        while (hi > lo + 1) {
            int mi = (hi + lo) / 2;
            (P / mi == P / r ? hi : lo) = mi;
        }
        int k = distance(thr.begin(), lower_bound(thr.begin(), thr.end(), hi));
        int64_t ans = pref[k];
        ans += arith(P % hi, -P / hi, r - hi + 1);
        return ans;
    };
    while (Q--) {
        int l, r;
        cin >> l >> r;
        int64_t ans = g(r) - g(l - 1);
        cout << ans << endl;
    }
}

int main() {
    std::ios::sync_with_stdio(false);
    std::cin.tie(nullptr);
    int tt = 1;
    // std::cin >> tt;
    while (tt--) {
        solve();
    }
}
0