链接

思路

  bug漫天飞。。。

  维护一颗线段树,支持区间赋值,和区间异或。因为会处理到一些方括号还是圆括号的问题,所以对于每一个下标都乘2,假设中间有一个.5即可,都变成了方括号,输出在处理一下。

  • U  [l,r]赋值为1
  • I   [0,l-1],[r+1,n]赋值为0
  • D [l,r]区间涂0
  • C [0,l-1],[r+1,n]赋值为0,[l,r]区间异或
  • S [l,r]区间异或

bug列表:乘2后从0开始,因为0*2=0,0.5*2=1,zz的居然是从2开始的。。

读入的区间并不都是一位数。。。

 #include<cstdio>
#include<algorithm>
#include<cstring>
#include<cmath>
#include<iostream> using namespace std;
const int N = ; int tag[N],xr[N],ans[N];
char opt[],s[];
bool fir = true; #define lson l,mid,rt<<1
#define rson mid+1,r,rt<<1|1 void pushdown(int rt) {
if (tag[rt]!=-) {
tag[rt<<] = tag[rt<<|] = tag[rt];
xr[rt<<] = xr[rt<<|] = ;
tag[rt] = -;
}
if (xr[rt]) {
xr[rt<<] ^= ;xr[rt<<|] ^= ;
xr[rt] = ;
}
}
void update(int l,int r,int rt,int L,int R,int x) {
if (L <= l && r <= R) {
if (x != -) tag[rt] = x,xr[rt] = ;
else xr[rt] ^= ;
return ;
}
pushdown(rt);
int mid = (l + r) / ;
if (L <= mid) update(lson,L,R,x);
if (R > mid) update(rson,L,R,x);
}
void query(int l,int r,int rt) {
if (l == r) {
if (tag[rt]!=-) ans[l] = tag[rt];
ans[l] ^= xr[rt];
return ;
}
pushdown(rt);
int mid = (l + r) / ;
query(lson);query(rson);
}
void get(int &L,int &R) {
char c=getchar();int flag;
while (c!='('&&c!='[') c=getchar();
scanf("%d",&L);
flag = (c=='('); L = (L*)+flag;
c = getchar();scanf("%d",&R);c = getchar();
flag = -(c!=']');R = (R*)+flag;
}
int main () { int n = ,L,R,lt;
memset(tag,-,sizeof(tag)); while (scanf("%s",opt)!=EOF) {
get(L,R); //-
if (opt[]=='U') {
update(,n,,L,R,);
}
else if (opt[]=='I') {
if (L- >= ) update(,n,,,L-,);
if (R+ <= n) update(,n,,R+,n,);
}
else if (opt[]=='D') {
update(,n,,L,R,);
}
else if (opt[]=='C') {
if (L- >= ) update(,n,,,L-,);
if (R+ <= n) update(,n,,R+,n,);
update(,n,,L,R,-);
}
else {
update(,n,,L,R,-);
}
}
query(,n,);
int pos=,flag=;
for (int i=; i<=n; i=pos+) {
pos=i;
if (!ans[i]) continue;
if (flag) printf(" ");
flag=; while (ans[pos+]) pos++;
if (i&) printf("(%d,",i/);
else printf("[%d,",i/);
if (pos&) printf("%d)",(pos+)/);
else printf("%d]",pos/);
}
if (!flag) puts("empty set");//-
return ;
}

3226: [Sdoi2008]校门外的区间的更多相关文章

  1. bzoj 3226 [Sdoi2008]校门外的区间(线段树)

    3226: [Sdoi2008]校门外的区间 Time Limit: 10 Sec  Memory Limit: 128 MBSubmit: 615  Solved: 227[Submit][Stat ...

  2. 3226. [SDOI2008]校门外的区间【线段树】

    Description   受校门外的树这道经典问题的启发,A君根据基本的离散数学的知识,抽象出5种运算维护集合S(S初始为空)并最终输出S.现在,请你完成这道校门外的树之难度增强版——校门外的区间. ...

  3. BZOJ 3226: [Sdoi2008]校门外的区间

    题目链接:http://www.lydsy.com:808/JudgeOnline/problem.php?id=3226 题意:初始集合S为空.模拟四种集合操作:集合并.交.差.补集并. 思路:区间 ...

  4. BZOJ3226[Sdoi2008]校门外的区间 题解

    题目大意: 有5种运算维护集合S(S初始为空)并最终输出S. 5种运算如下: U T  S∪T I T S∩T D T  S-T C T T-S S T S⊕T 基本集合运算如下: A∪B {x : ...

  5. 「BZOJ3226」[Sdoi2008]校门外的区间

    题目 首先是开闭区间的处理,我们把\(1.5\)这种数加进来,用\([1.5,6]\)来表示\((2,6]\) 根据离散数学的基本知识,尝试把五个操作转化成人话 把\([x,y]\)变成\(1\) 把 ...

  6. [SDOI2008] 校门外的区间 - 线段树

    U T 即将区间 \(T\) 范围赋值为 \(1\) I T 即将区间 \(U - T\) 范围赋值为 \(0\) D T 即将区间 \(T\) 赋值为 \(0\) C T 由于 \(S=T-S=T( ...

  7. BZOJ3226: [Sdoi2008]校门外的区间

    感觉很有趣的题呢. 每个点拆成两个,线段树维护. 不过这题难点其实在输入输出. #include<bits/stdc++.h> #define N (1<<17) #defin ...

  8. [bzoj3226][Sdoi2008]校门外的区间——线段树

    题目 略 题解 直接套黄学长模板. Orz 代码 #include <bits/stdc++.h> using namespace std; #define ll long long #d ...

  9. 【分块】bzoj3226 [Sdoi2008]校门外的区间

    题解见 : http://blog.csdn.net/iamzky/article/details/41088151 ORZ ZKY 2个懒标记:是否翻转,覆盖成了什么. 怎么处理一个块上有两个标记的 ...

随机推荐

  1. [原创] Debian9上配置软件阵列

    序言 软阵列是用软件实现的磁盘阵列. 准备工作 1. 更新系统 没啥,就他喵想用个最新的. apt update && apt upgrade 2. 安装mdadm 如果系统没有自带m ...

  2. redis笔记(四)

    本篇内容主要是简单介绍redis在python中的使用from time import sleep在python代码中使用redis需要导入redis packageimport redis简单的连接 ...

  3. HCNA配置console线路密码aaa认证

    Please check whether system data has been changed, and save data in time Configuration console time ...

  4. Win7无法连接wifi网络的解决方法

    以下方法是一个笔记,不能保证100%解决问题 方法1. 在CMD命令窗口中, ipconfig /release ipconfig/renew 方法2. 右键点网络图标,troubleshoot pr ...

  5. leetcode: 树

    1. sum-root-to-leaf-numbers Given a binary tree containing digits from0-9only, each root-to-leaf pat ...

  6. php5.5.15注释问题PHP Deprecated: Comments starting with '#' are deprecated in *.ini 警告解决办法

    PHP Deprecated:  Comments starting with '#' are deprecated in D:\mvam\php5\php.ini on line 1944 in U ...

  7. Invalid MyEclipse License - Discontinuing this MyEclipse operation. 出现这个错误怎么改正?

    Invalid MyEclipse License - Discontinuing this MyEclipse operation这句话的意思是无效的许可证-停用此MyEclipse操作入门就是你的 ...

  8. redis 对cmd的操作

    这个是原子递增的知识点: 关于list部分: 利用lpush命令, rpush命令, lrange命令,对列表操作 此前 我已经 在列表(list)中 插入了 部分 元素了 关于集合set 部分 首先 ...

  9. iOS第三方开放者平台概览

    前言:记录一些可能用到过的第三方开放者平台相关内容 视频类: 腾讯云移动直播:https://cloud.tencent.com/product/mlvb 遇到问题后发起工单是一种比较好的解决问题的方 ...

  10. python基本使用时常见错误

    python基本使用时常见错误 字符编码错误 如果要学习计算机编程语言,首先就要搞懂字符编码,否则在以后的学习过程中,将会是一场噩梦.在一开始使用的时候,我就遇到了很多的关于字符编码的问题,做个简单的 ...