Codeforces Round #263 (Div. 1) C. Appleman and a Sheet of Paper

题目地址:http://codeforces.com/contest/461/problem/C

题目大意:见原题。

算法分析:启发式暴力,每次把短的纸带折到长的纸带中,在全局记一个rev标记。注意细节。

Code:

#include <cstdio>
#include <algorithm>

#define N 100000

using namespace std;

bool rev;
int n,q,beg=1,end,typ,p,l,r,bit[N+10];

inline void add(int x,int y){
	for (;x<=n;x+=x&-x) bit[x]+=y;
}

inline int query(int x){
	int res=0;
	for (;x;x-=x&-x) res+=bit[x];
	return res;
}

int main(){
	scanf("%d%d",&n,&q);
	for (int i=1;i<=n;++i) add(i,1);
	end=n;
	for (int i=1;i<=q;++i){
		scanf("%d",&typ);
		if (typ==1){
			scanf("%d",&p);
			if (p<=(end-beg+1)/2)
				if (rev){
					p=end-p;
					for (int j=end;j>p;--j) add(2*p-j+1,query(j)-query(j-1));
					end=p;
				}
				else{
					p+=beg-1;
					for (int j=beg;j<=p;++j) add(2*p-j+1,query(j)-query(j-1));
					beg=p+1;
				}
			else{
				if (rev){
					p=end-p;
					for (int j=beg;j<=p;++j) add(2*p-j+1,query(j)-query(j-1));
					beg=p+1;
				}
				else{
					p+=beg-1;
					for (int j=end;j>p;--j) add(2*p-j+1,query(j)-query(j-1));
					end=p;
				}
				rev^=1;
			}
		}
		else{
			scanf("%d%d",&l,&r);
			if (rev) l=end-l,r=end-r;else l+=beg-1,r+=beg-1;
			if (l>r) swap(l,r);
			printf("%d\n",query(r)-query(l));
		}
		//<debug>
			/*puts("");
			for (int j=beg;j<=end;++j) printf("--");puts("");
			for (int j=beg;j<=end;++j) printf("%d ",query(j)-query(j-1));puts("");
			for (int j=beg;j<=end;++j) printf("--");puts("");
			printf("BEGIN @ %d END @ %d REV %s\n",beg,end,rev?"Y":"N");
			puts("");*/
		//</debug>
	}
	return 0;
}

By Charlie Pan

Aug 27,2014

时间: 2024-10-25 23:44:24

Codeforces Round #263 (Div. 1) C. Appleman and a Sheet of Paper的相关文章

Codeforces Round #263 (Div. 1) C. Appleman and a Sheet of Paper 树状数组暴力更新

C. Appleman and a Sheet of Paper 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

贪心 Codeforces Round #263 (Div. 2) C. Appleman and Toastman

题目传送门 1 /* 2 贪心:每次把一个丢掉,选择最小的.累加求和,重复n-1次 3 */ 4 /************************************************ 5 Author :Running_Time 6 Created Time :2015-8-1 13:20:01 7 File Name :A.cpp 8 *************************************************/ 9 10 #include <cstdio>

Codeforces Round #263 (Div. 2) D. Appleman and Tree 树形dp

链接: http://codeforces.com/contest/462/problem/D 题意: 给定n个点的树, 0为根,下面n-1行表示每个点的父节点 最后一行n个数 表示每个点的颜色,0为白色,1为黑色. 把树分成若干个联通块使得每个联通块有且仅有一个黑点,问有多少种分法(结果mod1e9+7) 题解: 树形dp,每个点有2个状态,已经归属于某个黑点和未归属于某个黑点. 代码: 31 int n; 32 int x[MAXN]; 33 VI G[MAXN]; 34 ll dp[MAX

Codeforces Round #263 (Div.1) B. Appleman and Tree

题目地址:http://codeforces.com/contest/461/problem/B 题目大意:给一棵树.每一个点为白色或黑色.切断一些边,使得每一个连通块有且仅有一个黑点,问划分方案数. 算法讨论:TreeDP. f[x][0..1]表示x所在连通块有0/1个黑点.设y为x的儿子,则DP方程为f[x][1]=f[x][1]*f[y][0]+f[x][1]*f[y][1]+f[x][0]*f[y][1],f[x][0]=f[x][0]*f[y][0]+f[x][0]*f[y][1].

Codeforces Round #263 (Div. 2) D. Appleman and Tree(树形DP)

题目链接 D. Appleman and Tree time limit per test :2 seconds memory limit per test: 256 megabytes input :standard input output:standard output Appleman has a tree with n vertices. Some of the vertices (at least one) are colored black and other vertices a

Codeforces Round #263 (Div. 1) A B C

Codeforces Round #263 (Div. 1) A:贪心,排个序,然后从后往前扫一遍,计算后缀和,之后在从左往右扫一遍计算答案 B:树形DP,0表示没有1,1表示有1,0遇到0必然合并,0遇到1也必然合并,1遇到0必然合并,1遇到1,必然切断,按照这样去转移即可 C:树状数组,再利用启发式合并,开一个l,r记录当前被子左右下标,和一个flip表示是否翻转 代码: A: #include <cstdio> #include <cstring> #include <

Codeforces Round #263 (Div. 1) 题解

A:Appleman and Toastman 题意:两个人玩游戏 初始第一个人给第二个人一个数组 第二个人把数组中每个数相加的和加到他的总得分里面,然后把这个数组还给第一个人,第一个人进行操作:若数组中只剩下一个数,就把这个数组扔了,否则把这个数组拆成两个数组扔回给第二个人,求第二个人的最大得分. 题解:游戏结束即为数组中N个数全被拆成了单独的一个数,而且我们可以知道若一个数在第一个人操作第K次时候变成只有一个数的数组,那么这个数在第二个人那算了K+1次,于是不难想到贪心算法,即让越大的数算的

Codeforces Round #263 (Div. 1)

B.Appleman and Tree 题目大意.一棵树上的点有的是黑的有的是白的,然后他想断开一些边使得剩下的连通分量里每个连通分量有且仅有一个黑点,求方案数. dp[u][0]表示以u为根的子树且u所在的连通分量没有黑点的方案数. dp[u][1]表示以u为根的子树且u所在的连通分量有一个黑点的方案数. 更新节点u时,对于他的子树v,可以断开或不断开这条边<u,v>. #include <cstdio> #include <algorithm> #include &

Codeforces Round #263 (Div. 2) proA

题目: A. Appleman and Easy Task time limit per test 1 second memory limit per test 256 megabytes input standard input output standard output Toastman came up with a very easy task. He gives it to Appleman, but Appleman doesn't know how to solve it. Can