记录编号 343275 评测结果 AAAAAAAAAA
题目名称 Color the Axis 最终得分 100
用户昵称 GravatarSky_miner 是否通过 通过
代码语言 C++ 运行时间 0.945 s
提交时间 2016-11-09 07:22:26 内存使用 1.12 MiB
显示代码纯文本
#include <queue>
#include <cstdio>
#include <cstring>
#include <algorithm>
using namespace std;
typedef long long ll;
inline void read(int &x){
	x=0;char ch;bool flag = false;
	while(ch=getchar(),ch<'!');if(ch == '-') ch=getchar(),flag = true;
	while(x=10*x+ch-'0',ch=getchar(),ch>'!');if(flag) x=-x;
}
inline int cat_min(const int &a,const int &b){return a<b ? a:b;}
inline int cat_max(const int &a,const int &b){return a>b ? a:b;}
const int maxn = 200000;
int nx[maxn];
bool vis[maxn];
inline int jump(int l,int r){
	int p = l,cnt = 0;
	int x = -1;
	while(p <= r && p != -1){
		if(!vis[p]) ++cnt;
		vis[p] = true;
		x = nx[p];
		nx[p] = nx[r];
		p = x;
		//printf("%d\n",x);
	}
	return cnt;
}
int main(){
	freopen("axis.in","r",stdin);
	freopen("axis.out","w",stdout);
	int n,m;read(n);read(m);
	for(int i=1;i<=n;++i) nx[i] = i+1;
	nx[n] = -1;
	int ans = n;
	for(int i=1,u,v;i<=m;++i){
		read(u);read(v);
		ans -= jump(u,v);
		printf("%d\n",ans);
	}
	getchar();getchar();
	fclose(stdin);fclose(stdout);
	return 0;
}