Gym 100114H Milestones(离线树状数组)

思路:和之前那题一样,找区间不重复的数出现多少个,离线树状数组即可


#include<bits/stdc++.h>
using namespace std;
const int maxn = 100000+500;
struct Node
{
	int l,r,id,ans;
}que[maxn];
int c[maxn],p[maxn],next[maxn],a[maxn];
int lowbit(int x){return x&(-x);}
void update(int i,int d)
{
	while(i<=maxn)
	{
		c[i]+=d;
		i+=lowbit(i);
	}
}
int query(int i)
{
	int ans = 0;
	while(i)
	{
		ans+=c[i];
		i-=lowbit(i);
	}
	return ans;
}

bool cmp1(Node a,Node b)
{
	if(a.l==b.l)
		return a.r<b.r;
	return a.l<b.l;
}
bool cmp2(Node a,Node b)
{
	return a.id<b.id;
}
int main()
{
    freopen("input.txt","r",stdin);
    freopen("output.txt","w",stdout);
	int Max = 0;
    int n,k;
	while(~scanf("%d",&n)){
		memset(c,0,sizeof(c));
		memset(next,0,sizeof(next));
		memset(p,0,sizeof(p));
	scanf("%d",&k);
	for(int i = 1;i<=n;i++)
		scanf("%d",&a[i]),Max = max(a[i],Max);
	for(int i = n;i>=1;i--)
		next[i]=p[a[i]],p[a[i]]=i;
	for(int i = 1;i<=Max;i++)
		if(p[i])
			update(p[i],1);
	for(int i = 1;i<=k;i++)
	{
		scanf("%d%d",&que[i].l,&que[i].r);
		que[i].id=i;
	}
	sort(que+1,que+1+k,cmp1);
	int l = 1;
	for(int i = 1;i<=k;i++)
	{
		while(l<que[i].l)
		{
			if(next[l])
				update(next[l],1);
			l++;
		}
		que[i].ans = query(que[i].r)-query(que[i].l-1);
	}
	sort(que+1,que+1+k,cmp2);
	for(int i = 1;i<=k;i++)
		printf("%d\n",que[i].ans);

	}
}


The longest road of the Fairy Kingdom has n milestones. A long-established
tradition defines a specific color for milestones in each region, with a total of m colors
in the kingdom. There is a map describing all milestones and their colors.
A number of painter teams are responsible for milestone maintenance and
painting. Typically, each team is assigned a road section spanning from milestone #l
to milestone #r. When optimizing the assignments, the supervisor often has to determine
how many different colors it will take to paint all milestones in the section l…r.
Example. Suppose there are five milestones #1, #2, #3, #4, #5 to be painted
with colors 1, 2, 3, 2, 1, respectively. In this case, only two different paints are necessary
for milestones 2…4: color 2 for milestones #2 and #4, and color 3 for milestone
#3.
Write a program that, given a map, will be able to handle multiple requests of
the kind described above.
Limitations
1 ≤ n ≤ 10 000; 1≤ m ≤ 255; 1 ≤ li ≤ ri ≤ n; 1 ≤ k ≤ 100 000.
Input
The first line contains two integers, n and k – the number of milestones and the
number of requests, respectively. The second line consists of n integers separated by
spaces and defines the sequence of colors for milestones from #1 to #n. The following
k lines contain pairs of integers, one pair per line. Each pair consists of two numbers
– li and ri – and defines a range of milestones for request i.
Output
The output file should contain k integers separated by line breaks. Result number
i should present the result of the i-th request, i. e. the number of colors required to
paint all milestones in the road section li…ri.
Example
Input.txt Output.txt
5 3
1 2 3 2 1
1 5
1 3
2 4
3
3
2

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值