結果

問題 No.2931 Shibuya 109
ユーザー srjywrdnprktsrjywrdnprkt
提出日時 2024-11-11 18:31:29
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 782 ms / 4,000 ms
コード長 1,402 bytes
コンパイル時間 2,394 ms
コンパイル使用メモリ 205,356 KB
実行使用メモリ 11,136 KB
最終ジャッジ日時 2024-11-11 18:31:46
合計ジャッジ時間 14,758 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 653 ms
5,248 KB
testcase_01 AC 739 ms
11,008 KB
testcase_02 AC 680 ms
11,008 KB
testcase_03 AC 764 ms
10,880 KB
testcase_04 AC 782 ms
11,008 KB
testcase_05 AC 664 ms
11,136 KB
testcase_06 AC 699 ms
11,004 KB
testcase_07 AC 110 ms
7,040 KB
testcase_08 AC 542 ms
5,248 KB
testcase_09 AC 522 ms
7,040 KB
testcase_10 AC 514 ms
10,880 KB
testcase_11 AC 2 ms
5,248 KB
testcase_12 AC 2 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
//#include <atcoder/modint>

using namespace std;
//using namespace atcoder;
using ll = long long;
//using mint = modint998244353;

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

    /*
       09x->1+0x
       00x->0+0x
       01x->0+1x

       19x->2+1x
       10x->1+1x
       11x->1+2x

       29x->3+2x
       20x->2+2x
       21x->2+3x

       39x->4+3x
       30x->3+3x
       31x->3+4x

       1が出てくるごとにあまりが1増える(あまりは8以下)

       よって、1で挟まれた区間[l,r)の寄与は現在の余りをxとして
       (9の数) * (x+1) + (0の数) * x
    */

    ll N, Q, A, l, r;
    cin >> N >> Q;
    vector<ll> S0(N+1), S9(N+1), p1;
    p1.push_back(0);
    for (int i=1; i<=N; i++){
        cin >> A;
        if (A == 1) p1.push_back(i);
        else if (A == 9) S9[i]++;
        else S0[i]++;
        S9[i] += S9[i-1];
        S0[i] += S0[i-1];
    }
    p1.push_back(N+1);

    while(Q--){
        cin >> l >> r;
        ll ans=0, cnt=0, l2, r2;
        for (int i=0; i<p1.size()-1; i++){
            r2 = min(p1[i+1]-1, r);
            l2 = max(p1[i], l);
            if (r2 >= l2){
                if (l2 == p1[i]) cnt++;
                ans += (S9[r2]-S9[l2-1]) * (cnt+1) + (S0[r2]-S0[l2-1]) * cnt + max(cnt-1, 0LL);
            }
        }
        cout << ans << endl;
    }

    return 0;
}
0