結果

問題 No.2758 RDQ
ユーザー kotatsugamekotatsugame
提出日時 2024-05-17 21:24:33
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 121 ms / 2,000 ms
コード長 725 bytes
コンパイル時間 798 ms
コンパイル使用メモリ 75,148 KB
実行使用メモリ 12,684 KB
最終ジャッジ日時 2024-05-17 23:42:14
合計ジャッジ時間 3,282 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
11,920 KB
testcase_01 AC 7 ms
10,252 KB
testcase_02 AC 8 ms
10,124 KB
testcase_03 AC 7 ms
10,128 KB
testcase_04 AC 8 ms
10,248 KB
testcase_05 AC 7 ms
10,252 KB
testcase_06 AC 121 ms
10,788 KB
testcase_07 AC 119 ms
10,892 KB
testcase_08 AC 119 ms
10,888 KB
testcase_09 AC 119 ms
10,892 KB
testcase_10 AC 121 ms
10,788 KB
testcase_11 AC 87 ms
12,680 KB
testcase_12 AC 87 ms
12,680 KB
testcase_13 AC 89 ms
12,552 KB
testcase_14 AC 91 ms
12,556 KB
testcase_15 AC 90 ms
12,584 KB
testcase_16 AC 91 ms
12,684 KB
testcase_17 AC 86 ms
12,684 KB
testcase_18 AC 89 ms
12,488 KB
testcase_19 AC 86 ms
12,680 KB
testcase_20 AC 88 ms
12,556 KB
testcase_21 AC 8 ms
10,256 KB
testcase_22 AC 8 ms
10,180 KB
testcase_23 AC 8 ms
10,252 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<vector>
#include<cassert>
#include<atcoder/fenwicktree>
using namespace std;
int N,Q;
vector<int>idx[1<<17];
int L[50000],R[50000],ans[50000];
vector<int>Qi[1<<17];
int main()
{
	ios::sync_with_stdio(false);
	cin.tie(nullptr);
	cin>>N>>Q;
	for(int i=0;i<N;i++)
	{
		int a;cin>>a;
		idx[a].push_back(i);
	}
	for(int i=0;i<Q;i++)
	{
		int K;
		cin>>L[i]>>R[i]>>K;
		L[i]--;
		Qi[K].push_back(i);
	}
	atcoder::fenwick_tree<int>BIT(N);
	for(int k=1;k<=(int)1e5;k++)
	{
		for(int a=k;a<=(int)1e5;a+=k)for(int i:idx[a])BIT.add(i,1);
		for(int qi:Qi[k])
		{
			ans[qi]=BIT.sum(L[qi],R[qi]);
		}
		for(int a=k;a<=(int)1e5;a+=k)for(int i:idx[a])BIT.add(i,-1);
	}
	for(int i=0;i<Q;i++)cout<<ans[i]<<"\n";
}
0