結果

問題 No.2758 RDQ
ユーザー ANKUR PALANKUR PAL
提出日時 2024-05-30 03:13:01
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,295 bytes
コンパイル時間 912 ms
コンパイル使用メモリ 88,120 KB
実行使用メモリ 18,488 KB
最終ジャッジ日時 2024-05-30 03:13:10
合計ジャッジ時間 9,051 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 -- -
testcase_02 -- -
testcase_03 -- -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <unordered_map>
#include <algorithm>

using namespace std;

void preprocess(int N, const vector<int>& A, unordered_map<int, vector<int>>& multiples) {
    for (int idx = 0; idx < N; ++idx) {
        int value = A[idx];
        for (int k = 1; k <= 100000; ++k) {
            if (value % k == 0) {
                multiples[k].push_back(idx + 1); // store 1-based index
            }
        }
    }
}

int count_multiples_in_range(const unordered_map<int, vector<int>>& multiples, int L, int R, int K) {
    if (multiples.find(K) == multiples.end()) return 0;
    
    const vector<int>& indices = multiples.at(K);
    auto left = lower_bound(indices.begin(), indices.end(), L);
    auto right = upper_bound(indices.begin(), indices.end(), R);
    
    return distance(left, right);
}

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

    int N, Q;
    cin >> N >> Q;
    
    vector<int> A(N);
    for (int i = 0; i < N; ++i) {
        cin >> A[i];
    }
    
    unordered_map<int, vector<int>> multiples;
    preprocess(N, A, multiples);
    
    for (int i = 0; i < Q; ++i) {
        int L, R, K;
        cin >> L >> R >> K;
        cout << count_multiples_in_range(multiples, L, R, K) << '\n';
    }
    
    return 0;
}
0