Codeforces 717.F Heroes of Making Magic III
3 seconds
256 megabytes
standard input
standard output
I’m strolling on sunshine, yeah-ah! And doesn’t it feel good! Well, it certainly feels good for our Heroes of Making Magic, who are casually walking on a one-directional road, fighting imps. Imps are weak and feeble creatures and they are not good at much. However, Heroes enjoy fighting them. For fun, if nothing else.
Our Hero, Ignatius, simply adores imps. He is observing a line of imps, represented as a zero-indexed array of integers a of length n, where ai denotes the number of imps at the i-th position. Sometimes, imps can appear out of nowhere. When heroes fight imps, they select a segment of the line, start at one end of the segment, and finish on the other end, without ever exiting the segment. They can move exactly one cell left or right from their current position and when they do so, they defeat one imp on the cell that they moved to, so, the number of imps on that cell decreases by one. This also applies when heroes appear at one end of the segment, at the beginning of their walk.
Their goal is to defeat all imps on the segment, without ever moving to an empty cell in it (without imps), since they would get bored. Since Ignatius loves imps, he doesn’t really want to fight them, so no imps are harmed during the events of this task. However, he would like you to tell him whether it would be possible for him to clear a certain segment of imps in the above mentioned way if he wanted to.
You are given q queries, which have two types:
- 1 a b k — denotes that k imps appear at each cell from the interval [a, b]
- 2 a b - asks whether Ignatius could defeat all imps on the interval [a, b] in the way described above
The first line contains a single integer n (1 ≤ n ≤ 200 000), the length of the array a. The following line contains n integers a1, a2, ..., an(0 ≤ ai ≤ 5 000), the initial number of imps in each cell. The third line contains a single integer q (1 ≤ q ≤ 300 000), the number of queries. The remaining q lines contain one query each. Each query is provided by integers a, b and, possibly, k (0 ≤ a ≤ b < n, 0 ≤ k ≤ 5 000).
For each second type of query output 1 if it is possible to clear the segment, and 0 if it is not.
3
2 2 2
3
2 0 2
1 1 1 1
2 0 2
0
1
For the first query, one can easily check that it is indeed impossible to get from the first to the last cell while clearing everything. After we add 1 to the second position, we can clear the segment, for example by moving in the following way:
题目大意:给一个区间,有两种操作:1.将[a,b]所有的数+k. 2.询问能不能将[a,b]中的数减完.规则是:每经过一个数,这个数就会-1,不能经过为0的数,并且每次只能左移或右移一格.
分析:比较难的一道题.
关键是要想到第二种操作的方案.构造出方案就好做了.可以从最左端点走,每次将当前位置变成0,方法就是不断的在当前位置和下一位置走.这样的话需要满足条件:a(i + 1) >= ai,走到点i+1后,a(i + 1)就变成了a(i + 1) - ai,对于a(i + 1)和a(i + 2)有同样的条件.那么到最后需要满足的条件就是
ar−a(r−1)+⋯≥[(r−a+1)≡1(mod2)]这里的r是区间[a,b]的任意一个数,并且ab - a(b - 1) + ...... = (b - a + 1) mod 2.
考虑如何实现,因为第一个条件有大于等于号,并且r是区间的任意一个数,那么只需要维护一下最小值就可以了,记d = ai - a(i-1) + a(i - 2)......在线段树上维护d.注意到d中ai的系数是正数还是负数取决于维护的两个端点的奇偶性,在修改和查询的时候要对奇偶性进行分类讨论.
#include <cstdio>
#include <cstring>
#include <iostream>
#include <algorithm> using namespace std; const int maxn = ,inf = 1e9; int n,m,a[maxn],b[maxn],minn[maxn << ][],tag[maxn << ][]; void pushup(int o)
{
minn[o][] = min(minn[o * ][],minn[o * + ][]);
minn[o][] = min(minn[o * ][],minn[o * + ][]);
} void pushdown(int o)
{
for (int i = ; i < ; i++)
{
if (tag[o][i])
{
minn[o * ][i] += tag[o][i];
minn[o * + ][i] += tag[o][i];
tag[o * ][i] += tag[o][i];
tag[o * + ][i] += tag[o][i];
tag[o][i] = ;
}
}
} void build(int o,int l,int r)
{
if (l == r)
{
minn[o][l & ] = b[l];
minn[o][l & ^ ] = inf;
return;
}
int mid = (l + r) >> ;
build(o * ,l,mid);
build(o * + ,mid + ,r);
pushup(o);
} void update(int o,int l,int r,int x,int y,int v,int id)
{
if (x > y)
return;
if(x <= l && r <= y)
{
tag[o][id] += v;
minn[o][id] += v;
return;
}
pushdown(o);
int mid = (l + r) >> ;
if (x <= mid)
update(o * ,l,mid,x,y,v,id);
if (y > mid)
update(o * + ,mid + ,r,x,y,v,id);
pushup(o);
} int query1(int o,int l,int r,int cur,int id)
{
if (cur == ) //易错
return ;
if (l == r)
return minn[o][id];
pushdown(o);
int mid = (l + r) >> ;
if (cur <= mid)
return query1(o * ,l,mid,cur,id);
if (cur > mid)
return query1(o * + ,mid + ,r,cur,id);
} int query2(int o,int l,int r,int x,int y,int id)
{
if (x <= l && r <= y)
return minn[o][id];
pushdown(o);
int mid = (l + r) >> ,res = inf;
if (x <= mid)
res = min(res,query2(o * ,l,mid,x,y,id));
if (y > mid)
res = min(res,query2(o * + ,mid + ,r,x,y,id));
return res;
} int main()
{
scanf("%d",&n);
for (int i = ; i <= n; i++)
scanf("%d",&a[i]);
for (int i = ; i <= n; i++)
b[i] = a[i] - b[i - ]; //维护的就是d
build(,,n);
scanf("%d",&m);
for (int i = ; i <= m; i++)
{
int id,a,b,k;
scanf("%d",&id);
if (id == )
{
scanf("%d%d%d",&a,&b,&k);
a++;
b++;
update(,,n,a,b,k,a & );
if ((b - a + ) & ) //如果区间长度是偶数的话,+-抵消了
{
update(,,n,b + ,n,k,a & ); //b维护的是类似前缀和一样的东西,所以要对区间右边的操作.
update(,,n,b + ,n,-k,a & ^ ); //这里+k,-k主要取决于有影响的数在之后的区间的系数.
}
}
else
{
scanf("%d%d",&a,&b);
a++;
b++;
if ((b - a + ) & )
{
int temp1 = query1(,,n,a - ,(a - ) & ); //这里的四个temp就是利用b数组类似前缀和的一个特点得到的.
int temp2 = query2(,,n,a,b,b & ) + temp1;
int temp3 = query2(,,n,a,b,b & ^ ) - temp1;
int temp4 = query1(,,n,b,b & ) + temp1;
if (temp4 == && temp2 >= && temp3 >= )
puts("");
else
puts("");
}
else
{
int temp1 = query1(,,n,a - ,(a - ) & );
int temp2 = query2(,,n,a,b,b & ) - temp1;
int temp3 = query2(,,n,a,b,b & ^ ) + temp1;
int temp4 = query1(,,n,b,b & ) - temp1;
if (temp4 == && temp2 >= &&temp3 >= )
puts("");
else
puts("");
}
}
} return ;
}
Codeforces 717.F Heroes of Making Magic III的更多相关文章
- 【Codeforces717F】Heroes of Making Magic III 线段树 + 找规律
F. Heroes of Making Magic III time limit per test:3 seconds memory limit per test:256 megabytes inpu ...
- Codeforces 959 F. Mahmoud and Ehab and yet another xor task
\(>Codeforces\space959 F. Mahmoud\ and\ Ehab\ and\ yet\ another\ xor\ task<\) 题目大意 : 给出一个长度为 \ ...
- Codeforces 835 F. Roads in the Kingdom
\(>Codeforces\space835 F. Roads in the Kingdom<\) 题目大意 : 给你一棵 \(n\) 个点构成的树基环树,你需要删掉一条环边,使其变成一颗 ...
- Codeforces 731 F. Video Cards(前缀和)
Codeforces 731 F. Video Cards 题目大意:给一组数,从中选一个数作lead,要求其他所有数减少为其倍数,再求和.问所求和的最大值. 思路:统计每个数字出现的个数,再做前缀和 ...
- Codeforces CF#628 Education 8 D. Magic Numbers
D. Magic Numbers time limit per test 2 seconds memory limit per test 256 megabytes input standard in ...
- Codeforces Round #335 (Div. 2) A. Magic Spheres 模拟
A. Magic Spheres Carl is a beginner magician. He has a blue, b violet and c orange magic spheres. ...
- Codeforces Round #335 (Div. 2) A. Magic Spheres 水题
A. Magic Spheres Time Limit: 20 Sec Memory Limit: 256 MB 题目连接 http://www.codeforces.com/contest/606/ ...
- Codeforces Round #443 (Div. 1) D. Magic Breeding 位运算
D. Magic Breeding link http://codeforces.com/contest/878/problem/D description Nikita and Sasha play ...
- Codeforces Round #350 (Div. 2) D1. Magic Powder - 1 二分
D1. Magic Powder - 1 题目连接: http://www.codeforces.com/contest/670/problem/D1 Description This problem ...
随机推荐
- CSP201312-3:最大的矩形
引言:CSP(http://www.cspro.org/lead/application/ccf/login.jsp)是由中国计算机学会(CCF)发起的"计算机职业资格认证"考试, ...
- MVC与ajax【转】
首先我们要实现用户的注册功能.进入visual studio 点击文件->新建->项目->选择ASP.NET Web应用程序(.NET Framework)->选择的模板为MV ...
- HTML5+Bootstrap 学习笔记 3
HTML5 aria-* and role aria是指Accessible Rich Internet Application.role的作用是描述一个非标准的tag的实际作用,而aria-*的作用 ...
- 启动tomcat时 一闪而过解决方法(2)
下面我先跟大家确认一下问题出现的前提条件(本机版本java:1.6.20,tomcat:6.0.32) 1)在eclipse里面启动tomcat时都是正常的. 2)在系统中配置了各种环境变量如下: J ...
- YQCB项目介绍
YQCB记账本软件 制作人:YQCB团队 团队简介:团队成立于2017年11月21日,由陈美琪,张晨阳,邢全阳,刘昭为四人组成. 陈美琪:团队灵魂人物,背负着巨大的压力带起整个团队. 张晨阳:团队领军 ...
- spring-test与junit
1.添加依赖 spring-test junit spring-context(自动添加依赖其他所需的spring依赖包) 2.在class前添加以下注解,用于配置xml文件的位置 @RunWith( ...
- UVA12583_Memory Overow
题目是很简单的队列维护的题目. 每次加入之前判断该字母是否在队列以及队列的容量是否超过k即可. #include <iostream> #include <cstdio> #i ...
- bzoj4754[JSOI2016]独特的树叶
这个题....别人写得怎么都....那么短啊? 我怎么....WA了好几次啊....怎么去loj扒了数据才调出来啊? 这个算法...怎么我还是不知道对不对啊 怎么回事啊怎么回事啊怎么回事啊? 请无视上 ...
- bzoj4798[CEOI2015] Calvinball championship
这年头,n方跑1万的题已经不多了... 题意 bzoj4798 不知道怎么叙述这个题意... 分析 如果某个序列字典序小于给定的序列,我们不妨考虑从左到右第一个小于给定的序列的位置,并枚举这个位置的数 ...
- Contest 2
A:辣鸡题.搜索怎么这么难啊.不会啊. B:裸的高斯消元,看起来可以优化到n2. #include<iostream> #include<cstdio> #include< ...