-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path39_mo's Algorithm + offline Query.cpp
95 lines (82 loc) · 2.05 KB
/
39_mo's Algorithm + offline Query.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
// 언어 : C++ , (성공/실패) : 1/0 , 메모리 : 9156 KB , 시간 : 168 ms
#include <iostream>
#include <vector>
#include <algorithm>
#include <string.h> // memset
#include <math.h>
#define SIZE 100001
using namespace std;
struct Query{
int idx,start,end;
Query(int idx,int start,int end){
this->idx = idx;
this->start = start;
this->end = end;
}
};
vector<Query> q;
int sqrt_N;
int arr[SIZE];
int mo_res[SIZE];
int cnt_num[SIZE];
// mo's 알고리즘
bool compare(Query a, Query b){
int x = a.start / sqrt_N;
int y = b.start / sqrt_N;
if(x==y) return a.end < b.end;
return x < y;
}
int main(void){
// 입출력 속도 최적화
ios::sync_with_stdio(0);
cin.tie(0); cout.tie(0);
int N; cin>>N; sqrt_N = sqrt(N);
for(int i=1;i<=N;i++){
cin>>arr[i];
}
int M; cin>>M;
for(int i=0;i<M;i++){
int a,b; cin>>a>>b;
q.push_back({i,a,b});
}
sort(q.begin(),q.end(),compare);
int cnt=0;
int st=q[0].start, en=q[0].end;
for(int i=st;i<=en;i++){
if(cnt_num[arr[i]]==0) cnt+=1;
cnt_num[arr[i]]++;
}
mo_res[q[0].idx] = cnt;
for(int i=1;i<M;i++){
cnt = 0;
while (st > q[i].start){ // |q[i].start|--|--|--|st|
// Plus
st--;
if(cnt_num[arr[st]]==0) cnt+=1;
cnt_num[arr[st]]++;
}
while (en < q[i].end){ // |en|--|--|--|q[i].end|
// Plus
en++;
if(cnt_num[arr[en]]==0) cnt+=1;
cnt_num[arr[en]]++;
}
while (st < q[i].start){ // |st|--|--|--|q[i].start|
// Minus
cnt_num[arr[st]]--;
if(cnt_num[arr[st]]==0) cnt-=1;
st++;
}
while (en > q[i].end){ // |q[i].end|--|--|--|en|
// Minus
cnt_num[arr[en]]--;
if(cnt_num[arr[en]]==0) cnt-=1;
en--;
}
mo_res[q[i].idx] = mo_res[q[i-1].idx] + cnt;
}
for(int i=0;i<M;i++){
cout<<mo_res[i]<<'\n';
}
return 0;
}