bzoj5168&5029: [HAOI2014]貼海報(線段樹)
題目傳送門
5029一樣
解法:
離散化。
覆蓋段。
程式碼實現:
#include<cstdio>
#include<cstring>
#include<cstdlib>
#include<iostream>
#include<algorithm>
#include<queue>
#include<cmath>
using namespace std;
struct node {int l,r,lc,rc,c,lazy;}tr[1100000];int trlen;
void bt(int l,int r) {
int now=++trlen;tr[now].l=l;tr[now].r=r;tr[now].lc=tr[now].rc=-1;tr[now].c=tr[now].lazy=0;
if(l<r) {int mid=(l+r)/2;tr[now].lc=trlen+1;bt(l,mid);tr[now].rc=trlen+1;bt(mid+1,r);}
}
void update(int now) {
int lc=tr[now].lc,rc=tr[now].rc;if(lc==-1)return ;
tr[lc].c=tr[rc].c=tr[lc].lazy=tr[rc].lazy=tr[now].c;tr[now].lazy=0;
}
void change(int now,int l,int r,int k) {
if(tr[now].lazy!=0)update(now);
if(tr[now].l==l&&tr[now].r==r){tr[now].c=tr[now].lazy=k;return ;}
int lc=tr[now].lc,rc=tr[now].rc,mid=(tr[now].l+tr[now].r)/2;
if(r<=mid)change(lc,l,r,k);else if(l>mid)change(rc,l,r,k);
else {change(lc,l,mid,k);change(rc,mid+1,r,k);}
if(tr[lc].c==tr[rc].c)tr[now].c=tr[lc].c;else tr[now].c=-1;
}
bool v[110000];
void find_sum(int now) {
if(tr[now].lazy!=0)update(now);
if(tr[now].c!=-1) {v[tr[now].c]=true;return ;}
if(tr[now].lc==-1)return ;
find_sum(tr[now].lc);find_sum(tr[now].rc);
}
struct edge {int x,id;}a[210000];int s[210000];
bool cmp(edge n1,edge n2) {return n1.x<n2.x;}
int main() {
int n,m;scanf("%d%d",&n,&m);
for(int i=1;i<=2*m;i++) {scanf("%d",&a[i].x);a[i].id=i;}
sort(a+1,a+1+2*m,cmp);int tot=0;a[0].x=-1;
for(int i=1;i<=2*m;i++) {
if(a[i].x!=a[i-1].x) {tot++;if(a[i].x!=a[i-1].x+1)tot++;}s[a[i].id]=tot;
}
trlen=0;bt(1,tot);
for(int i=1;i<=m;i++) change(1,s[2*i-1],s[2*i],i);
memset(v,false,sizeof(v));find_sum(1);int ans=0;
for(int i=1;i<=m;i++)if(v[i]==true)ans++;printf("%d\n",ans);
return 0;
}
相關文章
- 線段樹
- 線~段~樹
- 01 線段樹
- 線段樹--RMQMQ
- 【模版】線段樹
- 線段樹模板
- 線段樹 hate it
- ut.cpp 最大線段並減線段交 [線段樹]
- 李超線段樹
- 線段樹進階
- 權值線段樹
- 線段樹筆記筆記
- Segment Tree(線段樹)
- 線段樹入門
- 洛谷題單指南-線段樹-P3373 【模板】線段樹 2
- 懶標記線段樹
- 可持久化線段樹持久化
- 線段樹(超詳解)
- 線段樹 transformation——hdu 4578ORM
- 深入理解線段樹
- 線段樹簡單思路
- 線段樹擴充套件套件
- 第二課——線段樹
- 線段樹模板總結
- 線段樹(毒瘤)總結
- POJ 3667 Hotel 線段樹
- poj 2667 hotel 線段樹
- 線段樹 - 多組圖帶你從頭到尾徹底理解線段樹
- 資料結構之樹( 線段樹,字典樹)資料結構
- hdu 1698 線段樹 一段更新染色
- 線段樹也能是 Trie 樹 題解
- 線段樹學習筆記筆記
- 【筆記/模板】線段樹(改)筆記
- 線段樹知識亂講
- 線段樹合併 筆記筆記
- 線段樹科技合訂本
- [18/03/24] 線段樹模板
- 線段樹入門(Segment Tree)