結果

問題 No.2758 RDQ
ユーザー haihamabossuhaihamabossu
提出日時 2024-05-17 21:59:16
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 221 ms / 2,000 ms
コード長 1,147 bytes
コンパイル時間 2,324 ms
コンパイル使用メモリ 215,580 KB
実行使用メモリ 32,216 KB
最終ジャッジ日時 2024-05-17 23:45:14
合計ジャッジ時間 7,165 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
17,096 KB
testcase_01 AC 8 ms
8,704 KB
testcase_02 AC 7 ms
8,656 KB
testcase_03 AC 7 ms
8,704 KB
testcase_04 AC 7 ms
8,704 KB
testcase_05 AC 7 ms
8,704 KB
testcase_06 AC 214 ms
32,092 KB
testcase_07 AC 215 ms
31,952 KB
testcase_08 AC 213 ms
31,980 KB
testcase_09 AC 217 ms
31,728 KB
testcase_10 AC 215 ms
32,216 KB
testcase_11 AC 217 ms
18,008 KB
testcase_12 AC 214 ms
17,836 KB
testcase_13 AC 221 ms
18,068 KB
testcase_14 AC 220 ms
18,036 KB
testcase_15 AC 218 ms
17,876 KB
testcase_16 AC 214 ms
17,736 KB
testcase_17 AC 213 ms
17,800 KB
testcase_18 AC 210 ms
18,052 KB
testcase_19 AC 213 ms
17,900 KB
testcase_20 AC 214 ms
17,924 KB
testcase_21 AC 7 ms
8,704 KB
testcase_22 AC 7 ms
8,664 KB
testcase_23 AC 7 ms
8,704 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <atcoder/fenwicktree>
#include <bits/stdc++.h>
using namespace std;
using ll = long long;
#define rep(i, n) for (int i = 0; i < (int)(n); i++)

const ll MX = 100'010;
void solve() {
  ll n, q;
  cin >> n >> q;
  vector<ll> a(n);
  vector<vector<ll>> is(MX);
  rep(i, n) {
    cin >> a[i];
    for (ll j = 1; j * j <= a[i]; j++) {
      if (a[i] % j)
        continue;
      is[j].push_back(i);
      if (j != a[i] / j)
        is[a[i] / j].push_back(i);
    }
  }
  vector qs(MX, vector<tuple<ll, ll, ll>>());
  rep(qi, q) {
    ll l, r, k;
    cin >> l >> r >> k;
    qs[k].emplace_back(l, r, qi);
  }
  atcoder::fenwick_tree<ll> bit(MX);
  vector<ll> ans(q, 0);
  rep(val, MX - 5) {
    if (is[val].empty() || qs[val].empty())
      continue;
    for (const auto i : is[val])
      bit.add(i, 1);
    for (const auto &[l, r, qi] : qs[val])
      ans[qi] = bit.sum(l - 1, r);
    for (const auto i : is[val])
      bit.add(i, -1);
  }
  rep(i, ans.size()) cout << ans[i] << '\n';
}

int main() {
  std::cin.tie(nullptr);
  std::ios_base::sync_with_stdio(false);
  int T = 1;
  for (int t = 0; t < T; t++) {
    solve();
  }
  return 0;
}
0