比赛 2025.3.8 评测结果 AAAAAAAAAAAAAA
题目名称 线段覆盖 最终得分 100
用户昵称 徐诗畅 运行时间 0.976 s
代码语言 C++ 内存使用 4.76 MiB
提交时间 2025-03-08 09:07:29
显示代码纯文本
#include<bits/stdc++.h>
using namespace std;
const int N=2e5+5;
struct tree{
    int l,r,num,len,tag; //num:黑区间个数 len:黑区间长度 tag: 被全部覆盖几次 l:左端是否有1 
}t[N<<2];
int len,n;
void merge(int p,int l,int r){
    if(t[p].tag){
        t[p].l=t[p].r=t[p].num=1; 
		t[p].len=r-l+1;
    }
    else{
        t[p].l=t[p<<1].l; t[p].r=t[p<<1|1].r;
        t[p].num=t[p<<1].num+t[p<<1|1].num;
        if(t[p<<1|1].l==1&&t[p<<1].r==1) t[p].num--;
        t[p].len=t[p<<1].len+t[p<<1|1].len;
    }
}
void update(int p,int l,int r,int L,int R,int d){
    if(L<=l&&R>=r){
        t[p].tag+=d;
        if(l==r){
        	if(t[p].tag>0) t[p].l=t[p].r=t[p].num=t[p].len=1;
        	else t[p].l=t[p].r=t[p].num=t[p].len=0;
		}
        else merge(p,l,r);
        return;
    }
    int mid=(l+r)>>1;
    if(L<=mid) update(p<<1,l,mid,L,R,d);
    if(R>mid) update(p<<1|1,mid+1,r,L,R,d);
    merge(p,l,r);
}
int main(){
    freopen("xdfg.in","r",stdin);
    freopen("xdfg.out","w",stdout);
    scanf("%d%d",&len,&n);
    while(n--){
        int op,a,T; scanf("%d%d%d",&op,&a,&T);
        if(op==1) update(1,1,len,a,a+T-1,1);
        else update(1,1,len,a,a+T-1,-1);
        printf("%d %d\n",t[1].num,t[1].len);
    }
    return 0;
}