結果
問題 | No.2758 RDQ |
ユーザー | rniya |
提出日時 | 2024-05-17 21:50:57 |
言語 | C++23 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 77 ms / 2,000 ms |
コード長 | 4,974 bytes |
コンパイル時間 | 3,224 ms |
コンパイル使用メモリ | 257,308 KB |
実行使用メモリ | 7,040 KB |
最終ジャッジ日時 | 2024-05-17 23:44:44 |
合計ジャッジ時間 | 4,855 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 53 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 2 ms
6,944 KB |
testcase_03 | AC | 2 ms
6,944 KB |
testcase_04 | AC | 2 ms
6,944 KB |
testcase_05 | AC | 2 ms
6,944 KB |
testcase_06 | AC | 54 ms
6,944 KB |
testcase_07 | AC | 54 ms
6,944 KB |
testcase_08 | AC | 55 ms
6,944 KB |
testcase_09 | AC | 53 ms
6,944 KB |
testcase_10 | AC | 53 ms
7,040 KB |
testcase_11 | AC | 74 ms
6,940 KB |
testcase_12 | AC | 75 ms
6,944 KB |
testcase_13 | AC | 72 ms
6,940 KB |
testcase_14 | AC | 74 ms
6,940 KB |
testcase_15 | AC | 70 ms
6,940 KB |
testcase_16 | AC | 73 ms
6,948 KB |
testcase_17 | AC | 73 ms
6,940 KB |
testcase_18 | AC | 77 ms
6,944 KB |
testcase_19 | AC | 73 ms
6,940 KB |
testcase_20 | AC | 77 ms
6,948 KB |
testcase_21 | AC | 2 ms
6,940 KB |
testcase_22 | AC | 2 ms
6,944 KB |
testcase_23 | AC | 2 ms
6,940 KB |
ソースコード
#include <bits/stdc++.h> #ifdef LOCAL #include <debug.hpp> #else #define debug(...) void(0) #endif template <class T> std::istream& operator>>(std::istream& is, std::vector<T>& v) { for (auto& e : v) { is >> e; } return is; } template <class T> std::ostream& operator<<(std::ostream& os, const std::vector<T>& v) { for (std::string_view sep = ""; const auto& e : v) { os << std::exchange(sep, " ") << e; } return os; } template <class T, class U = T> bool chmin(T& x, U&& y) { return y < x and (x = std::forward<U>(y), true); } template <class T, class U = T> bool chmax(T& x, U&& y) { return x < y and (x = std::forward<U>(y), true); } template <class T> void mkuni(std::vector<T>& v) { std::ranges::sort(v); auto result = std::ranges::unique(v); v.erase(result.begin(), result.end()); } template <class T> int lwb(const std::vector<T>& v, const T& x) { return std::distance(v.begin(), std::ranges::lower_bound(v, x)); } namespace elementary_math { template <typename T> std::vector<T> divisor(T n) { std::vector<T> res; for (T i = 1; i * i <= n; i++) { if (n % i == 0) { res.emplace_back(i); if (i * i != n) res.emplace_back(n / i); } } return res; } template <typename T> std::vector<std::pair<T, int>> prime_factor(T n) { std::vector<std::pair<T, int>> res; for (T p = 2; p * p <= n; p++) { if (n % p == 0) { res.emplace_back(p, 0); while (n % p == 0) { res.back().second++; n /= p; } } } if (n > 1) res.emplace_back(n, 1); return res; } std::vector<int> osa_k(int n) { std::vector<int> min_factor(n + 1, 0); for (int i = 2; i <= n; i++) { if (min_factor[i]) continue; for (int j = i; j <= n; j += i) { if (!min_factor[j]) { min_factor[j] = i; } } } return min_factor; } std::vector<int> prime_factor(const std::vector<int>& min_factor, int n) { std::vector<int> res; while (n > 1) { res.emplace_back(min_factor[n]); n /= min_factor[n]; } return res; } long long modpow(long long x, long long n, long long mod) { assert(0 <= n && 1 <= mod && mod < (1LL << 31)); if (mod == 1) return 0; x %= mod; long long res = 1; while (n > 0) { if (n & 1) res = res * x % mod; x = x * x % mod; n >>= 1; } return res; } long long extgcd(long long a, long long b, long long& x, long long& y) { long long d = a; if (b != 0) { d = extgcd(b, a % b, y, x); y -= (a / b) * x; } else x = 1, y = 0; return d; } long long inv_mod(long long a, long long mod) { assert(1 <= mod); long long x, y; if (extgcd(a, mod, x, y) != 1) return -1; return (mod + x % mod) % mod; } template <typename T> T euler_phi(T n) { auto pf = prime_factor(n); T res = n; for (const auto& p : pf) { res /= p.first; res *= p.first - 1; } return res; } std::vector<int> euler_phi_table(int n) { std::vector<int> res(n + 1, 0); std::iota(res.begin(), res.end(), 0); for (int i = 2; i <= n; i++) { if (res[i] != i) continue; for (int j = i; j <= n; j += i) res[j] = res[j] / i * (i - 1); } return res; } // minimum i > 0 s.t. x^i \equiv 1 \pmod{m} template <typename T> T order(T x, T m) { T n = euler_phi(m); auto cand = divisor(n); std::sort(cand.begin(), cand.end()); for (auto& i : cand) { if (modpow(x, i, m) == 1) { return i; } } return -1; } template <typename T> std::vector<std::tuple<T, T, T>> quotient_ranges(T n) { std::vector<std::tuple<T, T, T>> res; T m = 1; for (; m * m <= n; m++) res.emplace_back(m, m, n / m); for (; m >= 1; m--) { T l = n / (m + 1) + 1, r = n / m; if (l <= r and std::get<1>(res.back()) < l) res.emplace_back(l, r, n / l); } return res; } } // namespace elementary_math using ll = long long; using namespace std; const int MAX = 100010; int main() { ios::sync_with_stdio(false); cin.tie(nullptr); cout << fixed << setprecision(15); int N, Q; cin >> N >> Q; vector<int> A(N); cin >> A; vector<vector<pair<int, int>>> qs(N + 1); for (int i = 0; i < Q; i++) { int L, R, K; cin >> L >> R >> K; qs[--L].emplace_back(i, -K); qs[R].emplace_back(i, K); } vector<int> ans(Q, 0), cnt(MAX, 0); for (int i = 0; i <= N; i++) { for (auto [idx, K] : qs[i]) { if (K > 0) { ans[idx] += cnt[K]; } else { ans[idx] -= cnt[-K]; } } if (i == N) break; auto ds = elementary_math::divisor(A[i]); for (int& d : ds) cnt[d]++; } for (auto x : ans) cout << x << '\n'; return 0; }