比赛 [不是Rapiz出的]农场主钦定NOIP模拟赛1 评测结果 AAAAAAAAAA
题目名称 Color the Axis 最终得分 100
用户昵称 God-Nan 运行时间 1.515 s
代码语言 C++ 内存使用 2.60 MiB
提交时间 2016-11-08 20:34:37
显示代码纯文本
#include<cstdio>
#include<iostream>
using namespace std;
int next[300000],dp[300000];
int n,m,ans,l,t;
int cool(int f);
int main()
{
	freopen("axis.in","r",stdin);
	freopen("axis.out","w",stdout);
	int i,p,k,f;
	scanf("%d%d",&n,&m);
	ans=n;
	for(i=0;i<=n;i++)
	{
	 next[i]=i+1;
    }
	for(i=1;i<=m;i++)
	{
		scanf("%d%d",&l,&t);
		f=l;
		cool(f);
		printf("%d\n",ans);
	}
	return 0;
}
int cool(int f)
{
  if(!dp[f]&&f<=t)
  dp[f]=1,ans--;
  
  if(f==t)
  {
   return next[f];
  }
  else if(f>t)
  return f;
  
  next[f]=cool(next[f]);
  
  return next[f];
}