记录编号 |
447675 |
评测结果 |
AAAAAAAAAAAAAAAAAAAAA |
题目名称 |
[HAOI 2014]贴海报 |
最终得分 |
100 |
用户昵称 |
Ostmbh |
是否通过 |
通过 |
代码语言 |
C++ |
运行时间 |
0.024 s |
提交时间 |
2017-09-11 10:16:25 |
内存使用 |
0.36 MiB |
显示代码纯文本
#include <iostream>
#include <cstdio>
#include <cstring>
#include <algorithm>
using namespace std;
const int maxn=1000+10;
int B[maxn*2];
int s[maxn],t[maxn];
int hash[maxn*2];
int vis[maxn*2];
int cld[maxn*2];
int col[maxn*2];
int tot=0;
int ti=0;
inline int bs(int x){
int l=1,r=tot;
while(l+1<r){
int mid=(l+r)>>1;
if(hash[mid]>=x)
r=mid;
else l=mid+1;
}
if(hash[l]==x)
return l;
return r;
}
int main(){
freopen("ha14d.in","r",stdin);
freopen("ha14d.out","w",stdout);
int n,m;
scanf("%d %d",&n,&m);
for(int i=1;i<=m;i++){
scanf("%d %d",&s[i],&t[i]);
B[++ti]=s[i];
B[++ti]=t[i];
}
sort(B+1,B+ti+1);
hash[++tot]=B[1];
for(int i=2;i<=ti;i++)
if(B[i]!=B[i-1])
hash[++tot]=B[i];
for(int i=1;i<=m;i++){
int u=bs(s[i]);
int p=bs(t[i]);
for(int j=u;j<=p;j++){
vis[j]=i;
if(j!=p&&hash[j+1]-hash[j]!=1)
col[j]=i;
}
}
int cnt=0;
for(int i=1;i<=tot;i++){
if(vis[i]!=0&&!cld[vis[i]]){
cld[vis[i]]=1;
cnt++;
}
if(i<tot&&hash[i+1]-hash[i]!=1&&!cld[col[i]]&&col[i]!=0){
cld[col[i]]=1;
cnt++;
}
}
printf("%d\n",cnt);
return 0;
}