记录编号 |
322186 |
评测结果 |
AAAAAAAAAAAAAAAAAAAA |
题目名称 |
[国家集训队 2010] 小Z的袜子 |
最终得分 |
100 |
用户昵称 |
AntiLeaf |
是否通过 |
通过 |
代码语言 |
C++ |
运行时间 |
0.821 s |
提交时间 |
2016-10-14 19:43:43 |
内存使用 |
2.20 MiB |
显示代码纯文本
#include<cstdio>
#include<cstring>
#include<algorithm>
#define LL long long
using namespace std;
const int maxn=50010,block=233;
struct Q{
int l,r,belong,id;
bool operator<(const Q &q)const{
if(belong!=q.belong)return belong<q.belong;
return r<q.r;
}
}q[maxn];
LL gcd(LL,LL);
int n,m,cnt[maxn]={0},a[maxn],l,r;
LL tmp,ans1[maxn],ans2[maxn],g;
int main(){
#define MINE
#ifdef MINE
freopen("hose.in","r",stdin);
freopen("hose.out","w",stdout);
#endif
scanf("%d%d",&n,&m);
for(int i=1;i<=n;i++)scanf("%d",&a[i]);
for(int i=1;i<=m;i++){
scanf("%d%d",&q[i].l,&q[i].r);
q[i].id=i;
q[i].belong=(q[i].l-1)/block+1;
}
sort(q+1,q+m+1);
l=2;r=1;
for(int i=1;i<=m;i++){
if(l>q[i].l){
while(--l>=q[i].l){
tmp+=cnt[a[l]];
cnt[a[l]]++;
}
l++;
}
if(r<q[i].r){
while(++r<=q[i].r){
tmp+=cnt[a[r]];
cnt[a[r]]++;
}
r--;
}
if(l<q[i].l)while(l<q[i].l){
cnt[a[l]]--;
tmp-=cnt[a[l]];
l++;
}
if(r>q[i].r)while(r>q[i].r){
cnt[a[r]]--;
tmp-=cnt[a[r]];
r--;
}
ans1[q[i].id]=tmp;
ans2[q[i].id]=((LL)(r-l)*(LL)(r-l+1))/2;
if(!ans2[q[i].id]){
ans1[q[i].id]=0ll;
ans2[q[i].id]=1ll;
}
g=gcd(ans1[q[i].id],ans2[q[i].id]);
ans1[q[i].id]/=g;
ans2[q[i].id]/=g;
}
for(int i=1;i<=m;i++)printf("%lld/%lld\n",ans1[i],ans2[i]);
#ifndef MINE
printf("\n-------------------------DONE-------------------------\n");
for(;;);
#endif
return 0;
}
LL gcd(LL a,LL b){return b==0ll?a:gcd(b,a%b);}
/*
6 4
1 2 3 3 3 2
2 6
1 3
3 5
1 6
Answer:
2/5
0/1
1/1
4/15
*/
/*
5 5
4 2 4 3 1
1 4
2 4
1 2
1 5
1 2
Answer:
1/6
0/1
0/1
1/10
0/1
*/