結果
問題 | No.2758 RDQ |
ユーザー | ゆにぽけ |
提出日時 | 2024-05-17 21:33:06 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 76 ms / 2,000 ms |
コード長 | 2,692 bytes |
コンパイル時間 | 1,521 ms |
コンパイル使用メモリ | 142,544 KB |
実行使用メモリ | 8,832 KB |
最終ジャッジ日時 | 2024-05-17 23:43:27 |
合計ジャッジ時間 | 3,979 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 42 ms
7,828 KB |
testcase_01 | AC | 6 ms
6,940 KB |
testcase_02 | AC | 4 ms
6,940 KB |
testcase_03 | AC | 6 ms
6,944 KB |
testcase_04 | AC | 6 ms
6,944 KB |
testcase_05 | AC | 6 ms
6,940 KB |
testcase_06 | AC | 75 ms
8,704 KB |
testcase_07 | AC | 76 ms
8,704 KB |
testcase_08 | AC | 75 ms
8,704 KB |
testcase_09 | AC | 76 ms
8,832 KB |
testcase_10 | AC | 76 ms
8,704 KB |
testcase_11 | AC | 66 ms
8,704 KB |
testcase_12 | AC | 66 ms
8,704 KB |
testcase_13 | AC | 65 ms
8,704 KB |
testcase_14 | AC | 65 ms
8,704 KB |
testcase_15 | AC | 64 ms
8,704 KB |
testcase_16 | AC | 67 ms
8,576 KB |
testcase_17 | AC | 66 ms
8,704 KB |
testcase_18 | AC | 67 ms
8,704 KB |
testcase_19 | AC | 64 ms
8,704 KB |
testcase_20 | AC | 67 ms
8,704 KB |
testcase_21 | AC | 6 ms
6,944 KB |
testcase_22 | AC | 6 ms
6,944 KB |
testcase_23 | AC | 6 ms
6,940 KB |
ソースコード
#include <iostream> #include <vector> #include <algorithm> #include <array> #include <iterator> #include <string> #include <cctype> #include <cstring> #include <cstdlib> #include <cassert> #include <cmath> #include <ctime> #include <iomanip> #include <numeric> #include <stack> #include <queue> #include <map> #include <unordered_map> #include <set> #include <unordered_set> #include <bitset> #include <random> #include <utility> #include <functional> #include <chrono> using namespace std; struct Eratosthenes { vector<int> isp,minfactor,myprime,moebius; Eratosthenes (int n) : isp(n+1,1),minfactor(n+1,__INT_MAX__),moebius(n+1,1){ isp[0] = isp[1] = 0; minfactor[0] = 0;minfactor[1] = 1; for(int p = 2;p <= n;p++){ if(!isp[p]) continue; minfactor[p] = p; moebius[p] = -1; myprime.push_back(p); for(int q = 2*p;q <= n;q += p){ isp[q] = false; if(!((q/p)%p)) moebius[q] = 0; else moebius[q] = -moebius[q]; minfactor[q] = min(minfactor[q],p); } } } vector<pair<int,int>> prime_factorize(int n) { vector<pair<int,int>> res; while(n-1){ int p = minfactor[n]; int exp = 0; while(minfactor[n] == p){ n /= p; exp ++; } res.push_back(make_pair(p,exp)); } return res; } vector<int> divisors(int n){ vector<int> res; res.push_back(1); auto pf = prime_factorize(n); for(auto [p,e]:pf){ int s = (int)res.size(); for(int i = 0;i < s;i++){ int v = 1; for(int j = 0;j < e;j++){ v *= p; res.push_back(res[i]*v); } } } return res; } }; void Main() { int N,Q; cin >> N >> Q; vector<int> A(N); for(int i = 0;i < N;i++) { cin >> A[i]; } Eratosthenes E((int)1e5); vector<int> L(Q),R(Q),K(Q); vector<vector<pair<int,int>>> G(N + 1); for(int i = 0;i < Q;i++) { cin >> L[i] >> R[i] >> K[i]; L[i]--; G[L[i]].push_back(make_pair(i, -1)); G[R[i]].push_back(make_pair(i, 1)); } vector<int> ans(Q); vector<int> cnt((int)1e5 + 1); for(int i = 0;i <= N;i++) { for(const auto &[qi, x] : G[i]) { ans[qi] += x * cnt[K[qi]]; } if(i < N) { for(int d : E.divisors(A[i])) { cnt[d]++; } } } for(int i = 0;i < Q;i++) { cout << ans[i] << "\n"; } } int main() { ios::sync_with_stdio(false); cin.tie(nullptr); int tt = 1; /* cin >> tt; */ while(tt--) Main(); }