結果

問題 No.2931 Shibuya 109
ユーザー GOTKAKOGOTKAKO
提出日時 2024-10-12 16:13:39
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 175 ms / 4,000 ms
コード長 1,005 bytes
コンパイル時間 2,024 ms
コンパイル使用メモリ 204,156 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-10-12 16:14:01
合計ジャッジ時間 6,261 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 96 ms
5,248 KB
testcase_01 AC 154 ms
5,248 KB
testcase_02 AC 153 ms
5,248 KB
testcase_03 AC 171 ms
5,248 KB
testcase_04 AC 175 ms
5,248 KB
testcase_05 AC 150 ms
5,248 KB
testcase_06 AC 157 ms
5,248 KB
testcase_07 AC 35 ms
5,248 KB
testcase_08 AC 107 ms
5,248 KB
testcase_09 AC 115 ms
5,248 KB
testcase_10 AC 138 ms
5,248 KB
testcase_11 AC 2 ms
5,248 KB
testcase_12 AC 2 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

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

    int N,Q; cin >> N >> Q;
    vector<int> ones,add(N);
    for(int i=0; i<N; i++){
        int a; cin >> a;
        if(a == 0) continue;
        if(a == 9) add.at(i)++;
        else ones.push_back(i);
    }
    int n = ones.size();
    vector<int> S1 = ones;
    for(int i=1; i<n; i++) S1.at(i) += S1.at(i-1);
    for(int i=1; i<N; i++) add.at(i) += add.at(i-1);

    while(Q--){
        int l,r; cin >> l >> r;
        l--; r--;
        int answer = add.at(r);
        if(l) answer -= add.at(l-1);
        
        int l1 = 0,r1 = 0;
        for(int i=0; i<n; i++){
            if(l > ones.at(i)) l1++;
            if(r >= ones.at(i)) r1++; 
        }
        if(l1 < r1){
            l1--; r1--;
            answer += (r-l+1)*(r1-l1);
            answer -= S1.at(r1)+(r1-l1)-l*(r1-l1);
            if(l1 >= 0) answer += S1.at(l1);
        }
        cout << answer << "\n";
    }
}
0