bzoj3638 Cf172 k-Maximum Subsequence Sum
传送门:http://www.lydsy.com/JudgeOnline/problem.php?id=3638
【题解】
看到k<=20就感觉很py了啊
我们用一棵线段树维护选段的过程,能选到>0的段就一直选,直到选到<0的段,每次选完把段内的数全部取相反数,意为下次取是“不取”的意思。
用线段树维护左边/右边/中间的max/min
# include <stdio.h>
# include <string.h>
# include <iostream>
# include <algorithm>
// # include <bits/stdc++.h> using namespace std; typedef long long ll;
typedef long double ld;
typedef unsigned long long ull;
const int M = 5e5 + ;
const int mod = 1e9+; # define RG register
# define ST static int n; struct pa {
int l, r, x;
pa() {}
pa(int l, int r, int x) : l(l), r(r), x(x) {}
friend pa operator + (pa a, pa b) {
pa c; c.x = a.x + b.x;
c.l = a.l, c.r = b.r;
return c;
}
friend bool operator < (pa a, pa b) {
return a.x < b.x;
}
friend bool operator > (pa a, pa b) {
return a.x > b.x;
}
}; struct querys {
pa lmx, rmx, mx, s;
querys() {}
querys(pa lmx, pa rmx, pa mx, pa s) : lmx(lmx), rmx(rmx), mx(mx), s(s) {}
}; namespace SMT {
const int Ms = 1e6 + ;
pa lmx[Ms], rmx[Ms], lmi[Ms], rmi[Ms], mx[Ms], mi[Ms], s[Ms];
bool tag[Ms]; // -1
# define ls (x<<)
# define rs (x<<|)
inline void up(int x) {
if(!x) return ;
lmx[x] = max(lmx[ls], s[ls] + lmx[rs]);
lmi[x] = min(lmi[ls], s[ls] + lmi[rs]);
rmx[x] = max(rmx[rs], rmx[ls] + s[rs]);
rmi[x] = min(rmi[rs], rmi[ls] + s[rs]);
mx[x] = max(mx[ls], mx[rs]);
mx[x] = max(mx[x], rmx[ls] + lmx[rs]);
mi[x] = min(mi[ls], mi[rs]);
mi[x] = min(mi[x], rmi[ls] + lmi[rs]);
s[x] = s[ls] + s[rs];
}
inline void pushtag(int x) {
if(!x) return ;
lmx[x].x = -lmx[x].x;
rmx[x].x = -rmx[x].x;
lmi[x].x = -lmi[x].x;
rmi[x].x = -rmi[x].x;
mx[x].x = -mx[x].x;
mi[x].x = -mi[x].x;
s[x].x = -s[x].x;
swap(mx[x], mi[x]);
swap(lmx[x], lmi[x]);
swap(rmx[x], rmi[x]);
tag[x] ^= ;
}
inline void down(int x) {
if(!x) return ;
if(!tag[x]) return ;
pushtag(ls); pushtag(rs);
tag[x] = ;
}
inline void change(int x, int l, int r, int ps, int d) {
if(l == r) {
s[x].l = s[x].r = lmx[x].l = lmx[x].r = rmx[x].l = rmx[x].r = lmi[x].l = lmi[x].r = rmi[x].l = rmi[x].r = l;
mx[x].l = mx[x].r = mi[x].l = mi[x].r = l;
s[x].x = mx[x].x = mi[x].x = lmx[x].x = lmi[x].x = rmx[x].x = rmi[x].x = d;
tag[x] = ;
return ;
}
down(x);
int mid = l+r>>;
if(ps <= mid) change(ls, l, mid, ps, d);
else change(rs, mid+, r, ps, d);
up(x);
} inline void change2(int x, int l, int r, int L, int R) {
if(L <= l && r <= R) {
pushtag(x);
return ;
}
down(x);
int mid = l+r>>;
if(L <= mid) change2(ls, l, mid, L, R);
if(R > mid) change2(rs, mid+, r, L, R);
up(x);
} inline querys merge(querys a, querys b) {
querys c;
c.lmx = max(a.lmx, a.s+b.lmx);
c.rmx = max(b.rmx, a.rmx+b.s);
c.s = a.s + b.s;
c.mx = max(a.mx, b.mx);
c.mx = max(c.mx, a.rmx + b.lmx);
return c;
} inline querys query(int x, int l, int r, int L, int R) {
if(L <= l && r <= R) return querys(lmx[x], rmx[x], mx[x], s[x]);
down(x);
int mid = l+r>>;
if(R <= mid) return query(ls, l, mid, L, R);
else if(L > mid) return query(rs, mid+, r, L, R);
else return merge(query(ls, l, mid, L, mid), query(rs, mid+, r, mid+, R));
} inline void debug(int x, int l, int r) {
printf("x = %d, l = %d, r = %d : mx = %d, lmx = %d, rmx = %d\n", x, l, r, mx[x].x, mx[x].l, mx[x].r);
if(l == r) return ;
int mid = l+r>>;
debug(ls, l, mid);
debug(rs, mid+, r);
}
} int Left[], Right[], m; int main() {
cin >> n;
for (int i=, t; i<=n; ++i) {
scanf("%d", &t);
SMT::change(, , n, i, t);
}
int Q, a, b, c;
querys t;
cin >> Q;
while(Q--) {
int opt; scanf("%d", &opt);
if(!opt) {
scanf("%d%d", &a, &b);
SMT::change(, , n, a, b);
} else {
scanf("%d%d%d", &a, &b, &c);
int s = ; m = ;
while(c--) {
t = SMT::query(, , n, a, b);
if(t.mx.x < ) break;
else s += t.mx.x;
// cout << t.mx.l << " " << t.mx.r << " " << t.mx.x << endl;
SMT::change2(, , n, t.mx.l, t.mx.r);
++m; Left[m] = t.mx.l, Right[m] = t.mx.r;
}
printf("%d\n", s);
for (int i=m; i; --i) SMT::change2(, , n, Left[i], Right[i]);
}
// SMT::debug(1, 1, n);
}
return ;
}
bzoj3638 Cf172 k-Maximum Subsequence Sum的更多相关文章
- 中国大学MOOC-陈越、何钦铭-数据结构-2015秋 01-复杂度2 Maximum Subsequence Sum (25分)
01-复杂度2 Maximum Subsequence Sum (25分) Given a sequence of K integers { N1,N2, ..., NK }. ...
- PAT1007:Maximum Subsequence Sum
1007. Maximum Subsequence Sum (25) 时间限制 400 ms 内存限制 65536 kB 代码长度限制 16000 B 判题程序 Standard 作者 CHEN, Y ...
- PTA (Advanced Level) 1007 Maximum Subsequence Sum
Maximum Subsequence Sum Given a sequence of K integers { N1, N2, ..., NK }. A continuous su ...
- 【DP-最大子串和】PAT1007. Maximum Subsequence Sum
1007. Maximum Subsequence Sum (25) 时间限制 400 ms 内存限制 32000 kB 代码长度限制 16000 B 判题程序 Standard 作者 CHEN, Y ...
- PAT Maximum Subsequence Sum[最大子序列和,简单dp]
1007 Maximum Subsequence Sum (25)(25 分) Given a sequence of K integers { N~1~, N~2~, ..., N~K~ }. A ...
- PAT甲 1007. Maximum Subsequence Sum (25) 2016-09-09 22:56 41人阅读 评论(0) 收藏
1007. Maximum Subsequence Sum (25) 时间限制 400 ms 内存限制 65536 kB 代码长度限制 16000 B 判题程序 Standard 作者 CHEN, Y ...
- PAT 甲级 1007 Maximum Subsequence Sum (25)(25 分)(0不是负数,水题)
1007 Maximum Subsequence Sum (25)(25 分) Given a sequence of K integers { N~1~, N~2~, ..., N~K~ }. A ...
- PAT 1007 Maximum Subsequence Sum(最长子段和)
1007. Maximum Subsequence Sum (25) 时间限制 400 ms 内存限制 65536 kB 代码长度限制 16000 B 判题程序 Standard 作者 CHEN, Y ...
- pat1007. Maximum Subsequence Sum (25)
1007. Maximum Subsequence Sum (25) 时间限制 400 ms 内存限制 65536 kB 代码长度限制 16000 B 判题程序 Standard 作者 CHEN, Y ...
- PTA 01-复杂度2 Maximum Subsequence Sum (25分)
题目地址 https://pta.patest.cn/pta/test/16/exam/4/question/663 5-1 Maximum Subsequence Sum (25分) Given ...
随机推荐
- 怎样通过互联网ssh访问家里电脑
需求:用可以上网的公司windows电脑连接家里的manjaro linux电脑.. 环境情况:公司电脑为内网,通过登录出口服务器连接互联网.家里的电脑也为内网,通过连接无线路由器连接外网.路由器有公 ...
- Flask初学者:蓝图Blueprint
蓝图这个名字好像就是根据单词Blueprint字面意思来,跟平常我们理解的蓝图完全挂不上钩,这里蓝图就是指Blueprint. 使用蓝图的好处是可以将不同功能作用的视图函数/类视图放到不同的模块中,可 ...
- python——PIL(图像处理库)
PIL(Python Imaging Library,python图像处理库)提供了通用的图像处理功能,以及大量有用的基本图像操作,如图像缩放,裁剪,旋转,颜色转换等. 1.打开图像并显示 from ...
- 牛客暑假多校第一场J-Different Integers
一.题目描述: 链接:https://www.nowcoder.com/acm/contest/139/JGiven a sequence of integers a1, a2, ..., an an ...
- 大话CNN经典模型:VGGNet
2014年,牛津大学计算机视觉组(Visual Geometry Group)和Google DeepMind公司的研究员一起研发出了新的深度卷积神经网络:VGGNet,并取得了ILSVRC20 ...
- Oozie 实战之 Hive
1.编辑job.propertiers nameNode=hdfs://cen-ubuntu.cenzhongman.com:8020 jobTracker=localhost:8032 queueN ...
- Javascript Step by Step - 02
DOM 操作 DOM是面向HTML和XML文档的API,为文档提供了结构化表示.在DOM中一切都是节点Node,文档就是由许多的Node组成的.文档里的每个节点都有属性 nodeName.nodeVa ...
- tp事务处理
数据库事务处理见手册 逻辑事务处理 Model->startTrans(); // 开启事务 if(操作失败) { Model->rollback(); // 回滚 }else { Mod ...
- 通过学习制作长微博工具来了解水印的制作,及EditText中的内容在图片中换行显示
长微博工具非常有用,140字的要求可能阻止你写更多的内容,于是长微博工具应运而生,虽然网上有很多长微博工具,但是我都不是很满意,所以自己想做一个,通过做这个长微博工具,我学习到了很多东西,有两个难点, ...
- 《Cracking the Coding Interview》——第7章:数学和概率论——题目5
2014-03-20 02:20 题目:给定二维平面上两个正方形,用一条直线将俩方块划分成面积相等的两部分. 解法:穿过对称中心的线会将面积等分,所以连接两个中心即可.如果两个中心恰好重合,那么任意穿 ...