結果

問題 No.2170 Left Addition Machine
ユーザー suisensuisen
提出日時 2022-12-22 17:49:44
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 573 ms / 2,000 ms
コード長 1,014 bytes
コンパイル時間 777 ms
コンパイル使用メモリ 80,220 KB
実行使用メモリ 7,296 KB
最終ジャッジ日時 2024-04-29 05:29:25
合計ジャッジ時間 39,752 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 495 ms
6,912 KB
testcase_04 AC 215 ms
5,376 KB
testcase_05 AC 336 ms
5,376 KB
testcase_06 AC 307 ms
5,632 KB
testcase_07 AC 456 ms
5,760 KB
testcase_08 AC 56 ms
5,376 KB
testcase_09 AC 398 ms
5,376 KB
testcase_10 AC 58 ms
5,376 KB
testcase_11 AC 224 ms
5,376 KB
testcase_12 AC 557 ms
7,168 KB
testcase_13 AC 549 ms
7,168 KB
testcase_14 AC 547 ms
7,168 KB
testcase_15 AC 554 ms
7,168 KB
testcase_16 AC 551 ms
7,168 KB
testcase_17 AC 549 ms
7,168 KB
testcase_18 AC 536 ms
7,168 KB
testcase_19 AC 542 ms
7,168 KB
testcase_20 AC 534 ms
7,168 KB
testcase_21 AC 360 ms
5,376 KB
testcase_22 AC 360 ms
5,376 KB
testcase_23 AC 365 ms
5,376 KB
testcase_24 AC 368 ms
5,376 KB
testcase_25 AC 367 ms
5,376 KB
testcase_26 AC 370 ms
5,376 KB
testcase_27 AC 369 ms
5,376 KB
testcase_28 AC 368 ms
5,376 KB
testcase_29 AC 362 ms
5,376 KB
testcase_30 AC 557 ms
7,168 KB
testcase_31 AC 556 ms
7,168 KB
testcase_32 AC 557 ms
7,168 KB
testcase_33 AC 557 ms
7,168 KB
testcase_34 AC 561 ms
7,168 KB
testcase_35 AC 554 ms
7,168 KB
testcase_36 AC 564 ms
7,168 KB
testcase_37 AC 555 ms
7,168 KB
testcase_38 AC 562 ms
7,296 KB
testcase_39 AC 368 ms
5,376 KB
testcase_40 AC 361 ms
5,376 KB
testcase_41 AC 366 ms
5,376 KB
testcase_42 AC 354 ms
5,376 KB
testcase_43 AC 363 ms
5,376 KB
testcase_44 AC 359 ms
5,376 KB
testcase_45 AC 359 ms
5,376 KB
testcase_46 AC 366 ms
5,376 KB
testcase_47 AC 364 ms
5,376 KB
testcase_48 AC 553 ms
7,040 KB
testcase_49 AC 553 ms
7,168 KB
testcase_50 AC 546 ms
7,168 KB
testcase_51 AC 573 ms
7,296 KB
testcase_52 AC 570 ms
7,168 KB
testcase_53 AC 538 ms
7,168 KB
testcase_54 AC 545 ms
7,168 KB
testcase_55 AC 550 ms
7,168 KB
testcase_56 AC 563 ms
7,168 KB
testcase_57 AC 560 ms
7,168 KB
testcase_58 AC 548 ms
7,296 KB
testcase_59 AC 552 ms
7,040 KB
testcase_60 AC 547 ms
7,168 KB
testcase_61 AC 545 ms
7,040 KB
testcase_62 AC 526 ms
7,168 KB
testcase_63 AC 544 ms
7,040 KB
testcase_64 AC 535 ms
7,168 KB
testcase_65 AC 547 ms
7,040 KB
testcase_66 AC 131 ms
5,376 KB
testcase_67 AC 497 ms
7,168 KB
testcase_68 AC 549 ms
7,168 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>

#include <atcoder/modint>

using mint = atcoder::modint998244353;

int main() {
    int n, q;
    std::cin >> n >> q;

    std::vector<long long> a(n);
    for (auto &&e : a) std::cin >> e;

    std::vector<int> inc_sum(n);
    for (int i = 0; i < n - 1; ++i) {
        inc_sum[i + 1] = inc_sum[i] + (a[i] < a[i + 1]);
    }
    std::vector<mint> a_sum(n + 1);
    for (int i = n - 1; i >= 0; --i) {
        a_sum[i] = 2 * a_sum[i + 1] + a[i];
    }
    std::vector<mint> pow_2(n + 1);
    pow_2[0] = 1;
    for (int i = 1; i <= n; ++i) {
        pow_2[i] = pow_2[i - 1] + pow_2[i - 1];
    }

    for (int qid = 0; qid < q; ++qid) {
        int l, r;
        std::cin >> l >> r;
        --l, --r;

        int ng = l - 1, ok = r;
        while (ok - ng > 1) {
            int mid = (ok + ng) >> 1;
            (inc_sum[r] - inc_sum[mid] == r - mid ? ok : ng) = mid;
        }
        std::cout << (a_sum[ok + 1] - a_sum[r + 1] * pow_2[r - ok] + a[ok]).val() << '\n';
    }
}
0