結果

問題 No.2758 RDQ
ユーザー shobonvip
提出日時 2024-05-17 21:57:07
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 971 ms / 2,000 ms
コード長 1,916 bytes
コンパイル時間 3,964 ms
コンパイル使用メモリ 252,124 KB
最終ジャッジ日時 2025-02-21 14:46:50
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 21
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;

//* ATCODER
#include<atcoder/all>
using namespace atcoder;
typedef modint998244353 mint;
//*/

/* BOOST MULTIPRECISION
#include<boost/multiprecision/cpp_int.hpp>
using namespace boost::multiprecision;
//*/

typedef long long ll;

#define rep(i, s, n) for (int i = (int)(s); i < (int)(n); i++)
#define rrep(i, s, n) for (int i = (int)(n)-1; i >= (int)(s); i--)

template <typename T> bool chmin(T &a, const T &b) {
	if (a <= b) return false;
	a = b;
	return true;
}

template <typename T> bool chmax(T &a, const T &b) {
	if (a >= b) return false;
	a = b;
	return true;
}

template <typename T> T max(vector<T> &a){
	assert(!a.empty());
	T ret = a[0];
	for (int i=0; i<(int)a.size(); i++) chmax(ret, a[i]);
	return ret;
}

template <typename T> T min(vector<T> &a){
	assert(!a.empty());
	T ret = a[0];
	for (int i=0; i<(int)a.size(); i++) chmin(ret, a[i]);
	return ret;
}

template <typename T> T sum(vector<T> &a){
	T ret = 0;
	for (int i=0; i<(int)a.size(); i++) ret += a[i];
	return ret;
}

// importbisect
template <typename T>
int bisect_left(vector<T> &X, T v){
	return lower_bound(X.begin(), X.end(), v) - X.begin();
}

template <typename T>
int bisect_right(vector<T> &X, T v){
	return upper_bound(X.begin(), X.end(), v) - X.begin();
}
// -----


int main(){
	
	int n, q; cin >> n >> q;
	vector<ll> a(n);
	rep(i,0,n){
		cin >> a[i];
	}

	const int B = 1000;
	vector fw(B+1,vector<int>(n+1));
	rep(i,1,B+1){
		rep(j,0,n){
			if(a[j]%i==0){
				fw[i][j+1]++;
			}
		}
		rep(j,0,n){
			fw[i][j+1] += fw[i][j];
		}
	}

	vector tar(100001, vector<int>(0));
	rep(i,0,n){
		tar[a[i]].push_back(i);
	}

	while(q--){
		int l, r, k; cin >> l >> r >> k;
		l--;
		int ans = 0;
		if (k > B){
			for (int i=k; i<=100000; i+=k){
				ans += bisect_left(tar[i], r);
				ans -= bisect_left(tar[i], l);
			}
		}else{
			ans = fw[k][r] - fw[k][l];
		}
		cout << ans << '\n';
	}



}

0