結果

問題 No.2931 Shibuya 109
ユーザー 👑 potato167potato167
提出日時 2024-10-13 19:28:03
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 773 ms / 4,000 ms
コード長 1,030 bytes
コンパイル時間 2,076 ms
コンパイル使用メモリ 204,968 KB
実行使用メモリ 118,144 KB
最終ジャッジ日時 2024-10-13 19:28:17
合計ジャッジ時間 10,420 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 119 ms
5,248 KB
testcase_01 AC 705 ms
118,016 KB
testcase_02 AC 582 ms
118,144 KB
testcase_03 AC 766 ms
118,144 KB
testcase_04 AC 773 ms
118,016 KB
testcase_05 AC 555 ms
118,016 KB
testcase_06 AC 596 ms
118,016 KB
testcase_07 AC 139 ms
59,904 KB
testcase_08 AC 314 ms
17,024 KB
testcase_09 AC 473 ms
60,032 KB
testcase_10 AC 560 ms
117,632 KB
testcase_11 AC 2 ms
5,248 KB
testcase_12 AC 1 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

#include <atcoder/segtree>
const int K = 9;
struct F {
    bool empty = true;
    array<int, K> sum;
    array<int, K> rem;
};

F op(F l, F r){
    if (l.empty) return r;
    if (r.empty) return l;
    F res;
    res.empty = false;
    rep(i, 0, K){
        res.rem[i] = r.rem[l.rem[i]];
        res.sum[i] = l.sum[i] + r.sum[l.rem[i]];
    }
    return res;
}

F e(){
    return F{};
}


int main() {
    ios::sync_with_stdio(false);
    cin.tie(nullptr);

    int N, Q;
    cin >> N >> Q;
    vector<F> base(N);
    rep(i, 0, N){
        int a;
        cin >> a;
        base[i].empty = false;
        rep(j, 0, K){
            base[i].sum[j] = (10 * j + a) / K;
            base[i].rem[j] = (10 * j + a) % K;
        }
    }
    atcoder::segtree<F, op, e> seg(base);
    while (Q--){
        int l, r;
        cin >> l >> r;
        l--;
        cout << seg.prod(l, r).sum[0] << "\n";
    }
}
0