Codeforces Round #263 (Div. 2)E(线段树点更新)

E. Appleman and a Sheet of Paper
time limit per test
2 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output

Appleman has a very big sheet of paper. This sheet has a form of rectangle with dimensions 1 × n. Your task is help Appleman with folding of such a sheet. Actually, you need to perform q queries. Each query will have one of the following types:

  1. Fold the sheet of paper at position pi. After this query the leftmost part of the paper with dimensions 1 × pi must be above the rightmost part of the paper with dimensions 1 × ([current width of sheet] - pi).
  2. Count what is the total width of the paper pieces, if we will make two described later cuts and consider only the pieces between the cuts. We will make one cut at distance li from the left border of the current sheet of paper and the other at distance ri from the left border of the current sheet of paper.

Please look at the explanation of the first test example for better understanding of the problem.

Input

The first line contains two integers: n and q (1  ≤ n ≤ 105; 1 ≤ q ≤ 105) — the width of the paper and the number of queries.

Each of the following q lines contains one of the described queries in the following format:

  • "1 pi(1 ≤ pi < [current width of sheet]) — the first type query.
  • "2 li ri(0 ≤ li < ri ≤ [current width of sheet]) — the second type query.
Output

For each query of the second type, output the answer.

Sample test(s)
input
7 4
1 3
1 2
2 0 1
2 1 2
output
4
3
input
10 9
2 2 9
1 1
2 0 1
1 8
2 0 8
1 2
2 1 3
1 4
2 2 4
output
7
2
10
4
5
Note

The pictures below show the shapes of the paper during the queries of the first example:

After the first fold operation the sheet has width equal to 4, after the second one the width of the sheet equals to 2.


题意:RT

思路:感觉这题挺有意思的,由于每次操作都是从左向右折叠
     
        1.当折叠的长度l <= 总长度 L 的一半,直接从左往右折 l

        2.当折叠的长度l > 总长度 L 的一半,相当于从右往左折 L-l ,然后再将纸片左右对调

        每次折叠可以用线段树暴力维护每个点的厚度,因为每次折叠区间都在不断缩小,所以暴力更新均摊下来也不会慢

#include 
   
   
    
    
#include 
    
    
     
     
#include 
     
     
      
      
#include 
      
      
       
       
using namespace std;
#define maxn 100010
#define lson l,m,o<<1
#define rson m+1,r,o<<1|1

int sum[maxn<<2];
int n,q;

void pushup(int o)
{
    sum[o]=sum[o<<1]+sum[o<<1|1];
}

void build(int l,int r,int o)
{
    if(l==r){
        sum[o]=1;
        return;
    }
    int m=l+r>>1;
    build(lson);
    build(rson);
    pushup(o);
}

void update(int l,int r,int o,int p,int x)
{
    if(l==r){
        sum[o]+=x;
        return;
    }
    int m=l+r>>1;
    if(p<=m)update(lson,p,x);
    else update(rson,p,x);
    pushup(o);
}

int query(int l,int r,int o,int L,int R)
{
    if(L<=l&&r<=R)return sum[o];
    int m=l+r>>1;
    int ans=0;
    if(L<=m)ans+=query(lson,L,R);
    if(m
       
       
         >1))ok1=1; if(ok^ok1){ if(!ok1)l=curr-curl-l; for(int j=0;j 
         
       
      
      
     
     
    
    
   
   
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值