# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
40944 |
2018-02-09T23:28:22 Z |
Hassoony |
Poklon (COCI17_poklon) |
C++14 |
|
5000 ms |
10620 KB |
#include<bits/stdc++.h>
#include<unordered_map>
using namespace std;
typedef long long ll;
typedef double D;
const ll inf=(1ll<<61);
const int mod=1e9+7;
const int MX=5e5+9;
const int SQ=350;
int n,q,ans,res[MX],a[MX],xblock,yblock;
pair<int,pair<int,int> >Q[MX];
unordered_map<int,int>cnt;
bool cmp(pair<int,pair<int,int> > A,pair<int,pair<int,int> > B){
xblock=A.first/SQ;
yblock=B.first/SQ;
if(xblock!=yblock)return xblock<yblock;
return A.second.first<B.second.first;
}
void add(int x){
ans-=(cnt[x]==2);
cnt[x]++;
ans+=(cnt[x]==2);
}
void rem(int x){
ans-=(cnt[x]==2);
cnt[x]--;
ans+=(cnt[x]==2);
}
int main(){
cin>>n>>q;
for(int i=1;i<=n;i++){
scanf("%d",&a[i]);
}
for(int i=0;i<q;i++){
scanf("%d%d",&Q[i].first,&Q[i].second.first);
Q[i].second.second=i;
}
sort(Q,Q+q,cmp);
int mol=1,mor=0,L,R;
for(int i=0;i<q;i++){
L=Q[i].first,R=Q[i].second.first;
while(mor<R){
add(a[++mor]);
}
while(mor>R){
rem(a[mor--]);
}
while(mol<L){
rem(a[mol++]);
}
while(mol>L){
add(a[--mol]);
}
res[Q[i].second.second]=ans;
}
for(int i=0;i<q;i++)printf("%d\n",res[i]);
}
Compilation message
poklon.cpp: In function 'int main()':
poklon.cpp:32:26: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
scanf("%d",&a[i]);
^
poklon.cpp:35:53: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
scanf("%d%d",&Q[i].first,&Q[i].second.first);
^
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
2 ms |
248 KB |
Output is correct |
2 |
Correct |
4 ms |
356 KB |
Output is correct |
3 |
Correct |
7 ms |
392 KB |
Output is correct |
4 |
Correct |
34 ms |
464 KB |
Output is correct |
5 |
Correct |
1929 ms |
2580 KB |
Output is correct |
6 |
Correct |
1906 ms |
2596 KB |
Output is correct |
7 |
Execution timed out |
5071 ms |
4596 KB |
Time limit exceeded |
8 |
Execution timed out |
5101 ms |
6480 KB |
Time limit exceeded |
9 |
Execution timed out |
5036 ms |
8552 KB |
Time limit exceeded |
10 |
Execution timed out |
5051 ms |
10620 KB |
Time limit exceeded |