結果
問題 | No.2758 RDQ |
ユーザー | Today03 |
提出日時 | 2024-05-17 22:40:59 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 2,643 bytes |
コンパイル時間 | 2,452 ms |
コンパイル使用メモリ | 226,128 KB |
実行使用メモリ | 491,076 KB |
最終ジャッジ日時 | 2024-05-17 22:41:08 |
合計ジャッジ時間 | 6,110 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
13,752 KB |
testcase_01 | AC | 2 ms
6,944 KB |
testcase_02 | AC | 1 ms
6,940 KB |
testcase_03 | AC | 2 ms
6,944 KB |
testcase_04 | AC | 1 ms
6,944 KB |
testcase_05 | TLE | - |
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 | -- | - |
ソースコード
#include <bits/stdc++.h> using namespace std; using ll = long long; const int INF = 1e9 + 10; const ll INFL = 4e18; template <typename T> struct segment_tree { using F = function<T(T, T)>; segment_tree() = default; segment_tree(int n, F f, T e) { this->n = n; this->size = n; this->f = f; this->e = e; dat = vector<T>(n << 1, e); } void build(const vector<T> &a) { assert((int)a.size() == n); for (int i = 0; i < (int)a.size(); i++) { dat[i + n] = a[i]; } for (int i = n - 1; i > 0; i--) { dat[i] = f(dat[i << 1], dat[i << 1 | 1]); } } void set(int i, T x) { assert(0 <= i && i < n); i += n; dat[i] = x; while (i) { i >>= 1; dat[i] = f(dat[i << 1], dat[i << 1 | 1]); } } T query(int l, int r) { assert(0 <= l && l <= r && r <= n); l += n; r += n; T ret = e; while (l < r) { if (l & 1) { ret = f(ret, dat[l]); l++; } if (r & 1) { r--; ret = f(ret, dat[r]); } l >>= 1; r >>= 1; } return ret; } T operator[](int i) { assert(0 <= i && i < n); return dat[n + i]; } int size; private: int n; F f; T e; vector<T> dat; }; segment_tree<ll> range_max_query(int n) { return segment_tree<ll>(n, [](ll a, ll b) { return max(a, b); }, -INFL); } segment_tree<ll> range_min_query(int n) { return segment_tree<ll>(n, [](ll a, ll b) { return min(a, b); }, INFL); } segment_tree<ll> range_sum_query(int n) { return segment_tree<ll>(n, [](ll a, ll b) { return a + b; }, 0); } struct dat { dat() {} map<int, int> mp; }; dat op(dat a, dat b) { dat res; for (auto [k, v] : a.mp) res.mp[k] = v; for (auto [k, v] : b.mp) res.mp[k] += v; return res; } const dat e = dat(); int main() { int N, Q; cin >> N >> Q; vector<int> A(N); for (int i = 0; i < N; i++) { cin >> A[i]; } vector<dat> init(N); for (int i = 0; i < N; i++) { for (int j = 1; j * j <= A[i]; j++) { if (A[i] % j == 0) { init[i].mp[j]++; if (j * j != A[i]) init[i].mp[A[i] / j]++; } } } segment_tree<dat> seg(N, op, e); seg.build(init); while (Q--) { int l, r, k; cin >> l >> r >> k; l--; dat res = seg.query(l, r); cout << res.mp[k] << '\n'; } }