結果
問題 | No.2758 RDQ |
ユーザー | twooimp2 |
提出日時 | 2024-05-26 03:07:05 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
MLE
|
実行時間 | - |
コード長 | 1,099 bytes |
コンパイル時間 | 2,789 ms |
コンパイル使用メモリ | 221,276 KB |
実行使用メモリ | 814,624 KB |
最終ジャッジ日時 | 2024-05-26 03:07:13 |
合計ジャッジ時間 | 7,074 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | MLE | - |
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 | -- | - |
ソースコード
#include<bits/stdc++.h> #include<atcoder/segtree> using namespace std; using namespace atcoder; using ll=int; using S=ll; S op(S a,S b){return a+b;} S e(){return 0;} vector<ll> calc_divisors(ll N) { vector<ll> res; for (ll i = 1; i * i <= N; ++i) { if (N % i != 0) continue; res.push_back(i); if (N / i != i) res.push_back(N / i); } sort(res.begin(), res.end()); return res; } int main(){ ll n,q; cin>>n>>q; vector<ll> a(n); for(ll i=0;i<n;i++){ cin>>a[i]; } vector<ll> vs; for(ll i=0;i<n;i++){ vector<ll> d=calc_divisors(a[i]); for(ll j:d){ vs.push_back(j); } } sort(vs.begin(),vs.end()); vs.erase(unique(vs.begin(),vs.end()),vs.end()); map<ll,ll> rev; for(ll i=0;i<(ll)vs.size();i++){ rev[vs[i]]=i+1; } segtree<S,op,e> seg_(n); vector<segtree<S,op,e>> seg((ll)vs.size()+1,seg_); for(ll i=0;i<n;i++){ vector<ll> d=calc_divisors(a[i]); for(ll j:d){ seg[rev[j]].set(i,1); } } while(q--){ ll l,r,k; cin>>l>>r>>k; l--; cout<<seg[rev[k]].prod(l,r)<<endl; } }