Codeforces915 E. Physical Education Lessons(ODT)
Posted live4m
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Codeforces915 E. Physical Education Lessons(ODT)相关的知识,希望对你有一定的参考价值。
题意:
解法:
显然线段树.
动态开点线段树T了.
线段树节点离散化WA了(节点区间需要左闭右开还是什么的,细节超级多).
麻了,只能看别人的题解硬上ODT.
注意要在区间赋值的时候顺便修改答案,否则还会T...
code:
#include<bits/stdc++.h>
using namespace std;
#define type bool
#define It set<Node>::iterator
struct Node{
int l,r;
mutable type x;
Node(int a,int b=0,type c=0){
l=a,r=b,x=c;
}
bool operator<(const Node& a)const {
return l<a.l;
}
};
set<Node>s;
int n,m;
int ans;
It split(int pos){
auto it=s.lower_bound(Node(pos));//不能用upper_bound,因为要找最左边的一个
if(it!=s.end()&&it->l==pos){
return it;
}
it--;
int l=it->l,r=it->r;
type x=it->x;
s.erase(it);
s.insert(Node(l,pos-1,x));
return s.insert(Node(pos,r,x)).first;
}
void assign(int l,int r,type val){//区间赋值
auto it2=split(r+1),it1=split(l);//要先找r,再找l
for(auto temp=it1;temp!=it2;temp++){
if(temp->x){
ans-=temp->r-temp->l+1;
}
}
s.erase(it1,it2);
s.insert(Node(l,r,val));
ans+=(r-l+1)*val;
}
void solve(){
scanf("%d%d",&n,&m);
s.insert(Node(1,n,1));
ans=n;
while(m--){
int l,r,op;scanf("%d%d%d",&l,&r,&op);
if(op==1){//[l,r]修改为0
assign(l,r,0);
}else if(op==2){//[l,r]修改为1
assign(l,r,1);
}
printf("%d\\n",ans);
}
}
signed main(){
#ifndef ONLINE_JUDGE
freopen("../in.txt","r",stdin);
freopen("../out.txt","w",stdout);
#endif
solve();
return 0;
}
以上是关于Codeforces915 E. Physical Education Lessons(ODT)的主要内容,如果未能解决你的问题,请参考以下文章
Educational Codeforces Round 36 (Rated for Div. 2) E. Physical Education Lessons(动态开点线段树)
Codeforces 915 E Physical Education Lessons
Physical Education Lessons CodeForces - 915E (动态开点线段树)
Physical Education Lessons Codeforces - 915E
Codeforces 915E. Physical Education Lessons(动态开点线段树)
[Educational Codeforces Round 36]E. Physical Education Lessons