记录编号 | 343380 | 评测结果 | AAATTTTTTT | ||
---|---|---|---|---|---|
题目名称 | Color the Axis | 最终得分 | 30 | ||
用户昵称 | CJK | 是否通过 | 未通过 | ||
代码语言 | C++ | 运行时间 | 7.050 s | ||
提交时间 | 2016-11-09 08:54:37 | 内存使用 | 0.35 MiB | ||
#include<iostream> #include<cstdio> using namespace std; bool b[200000]={0}; int n,m,ans=0; int main() { freopen("axis.in","r",stdin); freopen("axis.out","w",stdout); scanf("%d %d",&n,&m); int x,y; for(int i=1;i<=m;i++) { cin>>x>>y; for(int j=x;j<=y;j++) b[j]=1; for(int j=1;j<=n;j++) if(b[j]==1) ans++; printf("%d\n",n-ans); ans=0; } return 0; }