CF461C.Appleman and a Sheet of Paper
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
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:
- 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) .
- 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.
输入格式
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<=p_{i}<[current width of sheet]) — the first type query.
- " 2 li ri " (0<=l_{i}<r_{i}<=[current width of sheet]) — the second type query.
输出格式
For each query of the second type, output the answer.
输入输出样例
输入#1
7 4 1 3 1 2 2 0 1 2 1 2
输出#1
4 3
输入#2
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
输出#2
7 2 10 4 5
说明/提示
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 .