非常简单的单点修改+区间加+区间查询。我用的是最近刚学的区间修改版本树状数组。
  直接维护即可,注意修改后的单点值已经不是a[i],或者b[i],要通过区间查询求单点。不然是错的。

区间修改版本树状数组:

#include<iostream>
#include<string.h>
#include<stdio.h>
#include<algorithm>
#define LL long long
using namespace std;
LL c_p[];
LL sum_p[];
LL c_y[];
LL sum_y[];
LL a[];
LL b[];
int n,m;
int cnt1;
int cnt2;
int lowbit(int x){
return x&(-x);
}
void update(int x,int w,LL c[],LL sum[]){
for (int i=x;i<=n;i+=lowbit(i)){
c[i]+=(LL)w;
sum[i]+=(LL)w*(x-);
}
}
LL sum(int x,LL c[],LL sum[]){
LL ans=;
for (int i=x;i>;i-=lowbit(i)){
ans+=(LL)x*c[i]-sum[i];
}
return ans;
}
int main(){ while(~scanf("%d%d",&n,&m)){
a[]=;
cnt1=;
cnt2=;
for (int i=;i<=n;i++){
scanf("%lld",&a[i]);
update(i,a[i]-a[i-],c_p,sum_p);
}
b[]=;
for (int i=;i<=n;i++){
scanf("%lld",&b[i]);
update(i,b[i]-b[i-],c_y,sum_y);
}
int ss=;
while(m--){
ss++;
char op[];
char to;
int x,y,w;
scanf("%s",op);
if (op[]=='i'){
scanf(" %c",&to);
scanf("%d%d",&x,&y);
if (to=='P'){
int lw=sum(x,c_p,sum_p)-sum(x-,c_p,sum_p);
int rw=sum(y,c_p,sum_p)-sum(y-,c_p,sum_p);
update(x,rw-lw,c_p,sum_p);
update(x+,lw-rw,c_p,sum_p);
update(y,lw-rw,c_p,sum_p);
update(y+,rw-lw,c_p,sum_p);
}else {
int lw=sum(x,c_y,sum_y)-sum(x-,c_y,sum_y);
int rw=sum(y,c_y,sum_y)-sum(y-,c_y,sum_y);
update(x,rw-lw,c_y,sum_y);
update(x+,lw-rw,c_y,sum_y);
update(y,lw-rw,c_y,sum_y);
update(y+,rw-lw,c_y,sum_y);
}
}
else if (op[]=='u'){
scanf(" %c",&to);
int l,r;
scanf("%d%d%d",&l,&r,&w);
if (to=='P'){
update(l,w,c_p,sum_p);
update(r+,-w,c_p,sum_p);
}else {
update(l,w,c_y,sum_y);
update(r+,-w,c_y,sum_y);
}
}else if (op[]=='t'){
scanf(" %c",&to);
scanf("%d%d",&x,&y);
if (to=='P'){
w=sum(x,c_y,sum_y)-sum(x-,c_y,sum_y);
update(x,-w,c_y,sum_y);
update(x+,w,c_y,sum_y);
update(y,w,c_p,sum_p);
update(y+,-w,c_p,sum_p);
}else {
w=sum(x,c_p,sum_p)-sum(x-,c_p,sum_p);
update(x,-w,c_p,sum_p);
update(x+,w,c_p,sum_p);
update(y,w,c_y,sum_y);
update(y+,-w,c_y,sum_y);
}
}else {
int l,r;
scanf("%d%d",&l,&r);
LL num_p=sum(r,c_p,sum_p)-sum(l-,c_p,sum_p);
LL num_y=sum(r,c_y,sum_y)-sum(l-,c_y,sum_y);
if (num_p>num_y){
cnt1++;
printf("P %lld\n",num_p);
}else {
cnt2++;
printf("Y %lld\n",num_y);
}
}
}
if (cnt1>cnt2){
printf("little P is winner!\n");
}else if (cnt1<cnt2){
printf("little Y is winner!\n");
}else {
printf("five five open\n");
}
}
return ;
}

线段树版本:。。。更新laze标记,以及sum的时候,一定要用+=,不要用=,因为往下更新的时候,有可能不为0。

#include<iostream>
#include<algorithm>
#include<string.h>
#include<stdio.h>
#define LL long long
using namespace std;
struct node{
int l,r;
LL laze;
LL sum;
}tree[][<<];
int a[];
int b[];
int cnt1;
int cnt2;
inline int L(int r){return r<<;};
inline int R(int r){return r<<|;};
inline int MID(int l,int r){return (l+r)>>;};
void push_down(int root,node tre[]){
if (tre[root].laze){
tre[L(root)].laze+=tre[root].laze;
tre[R(root)].laze+=tre[root].laze;
tre[L(root)].sum+=(LL)tre[root].laze*(tre[L(root)].r-tre[L(root)].l+);
tre[R(root)].sum+=(LL)tre[root].laze*(tre[R(root)].r-tre[R(root)].l+);
tre[root].laze=;
}
}
void build(int root,int l,int r){
tree[][root].l=l;
tree[][root].l=l;
tree[][root].r=r;
tree[][root].r=r;
tree[][root].laze=;
tree[][root].laze=;
tree[][root].sum=;
tree[][root].sum=;
if (l==r){
tree[][root].sum=a[l];
tree[][root].sum=b[l];
return;
}
int mid=MID(l,r);
build(L(root),l,mid);
build(R(root),mid+,r);
tree[][root].sum=tree[][L(root)].sum+tree[][R(root)].sum;
tree[][root].sum=tree[][L(root)].sum+tree[][R(root)].sum;
}
void update(int root,int ul,int ur,LL w,node tre[]){
int l=tre[root].l;
int r=tre[root].r;
// cout<<l<<" "<<r<<endl;
if (ul<=l && r<=ur){
tre[root].sum+=(LL)(r-l+)*w;
tre[root].laze+=w;
return;
}
push_down(root,tre);
int mid=MID(l,r);
if (ur<=mid)
update(L(root),ul,ur,w,tre);
else if (ul>mid)
update(R(root),ul,ur,w,tre);
else {
update(L(root),ul,mid,w,tre);
update(R(root),mid+,ur,w,tre);
}
tre[root].sum=tre[L(root)].sum+tre[R(root)].sum;
}
LL query(int root,int ql,int qr,node tre[]){
int l=tre[root].l;
int r=tre[root].r;
if (ql<=l && r<=qr){
return tre[root].sum;
}
push_down(root,tre);
int mid=MID(l,r);
LL ans=;
if (qr<=mid){
ans+=query(L(root),ql,qr,tre);
}else if (ql>mid){
ans+=query(R(root),ql,qr,tre);
}else {
ans+=query(L(root),ql,mid,tre);
ans+=query(R(root),mid+,qr,tre);
}
return ans;
}
int main(){
int n,m;
while(~scanf("%d%d",&n,&m)){
for (int i=;i<=n;i++){
scanf("%d",&a[i]);
}
for (int i=;i<=n;i++){
scanf("%d",&b[i]);
}
build(,,n);
cnt1=;
cnt2=;
while(m--){
char op[];
char pe;
int x,y;
LL w;
scanf("%s",op);
if (op[]=='i'){
scanf(" %c",&pe);
if(pe=='P'){
scanf("%d%d",&x,&y);
LL lw=query(,x,x,tree[]);
LL rw=query(,y,y,tree[]);
update(,x,x,rw-lw,tree[]);
update(,y,y,lw-rw,tree[]);
}else {
scanf("%d%d",&x,&y);
int lw=query(,x,x,tree[]);
int rw=query(,y,y,tree[]);
update(,x,x,rw-lw,tree[]);
update(,y,y,lw-rw,tree[]);
}
}else if (op[]=='u'){
scanf(" %c",&pe);
if (pe=='P'){
scanf("%d%d%lld",&x,&y,&w);
update(,x,y,w,tree[]);
}else {
scanf("%d%d%lld",&x,&y,&w);
update(,x,y,w,tree[]);
}
}else if (op[]=='t'){
scanf(" %c",&pe);
scanf("%d%d",&x,&y);
if (pe=='P'){
w=query(,x,x,tree[]);
//cout<<w<<endl;
update(,x,x,-w,tree[]);
update(,y,y,w,tree[]);
// for (int i=1;i<=n;i++){
// cout<<query(1,i,i,tree[0])<<" ";
// }
// cout<<endl;
// for (int i=1;i<=n;i++){
// cout<<query(1,i,i,tree[1])<<" ";
// }
// cout<<endl;
}else {
w=query(,x,x,tree[]);
update(,x,x,-w,tree[]);
update(,y,y,w,tree[]);
}
}else {
scanf("%d%d",&x,&y);
LL sum1=query(,x,y,tree[]);
LL sum2=query(,x,y,tree[]);
if (sum1>sum2){
printf("P %lld\n",sum1);
cnt1++;
}else {
printf("Y %lld\n",sum2);
cnt2++;
}
}
}
if (cnt1>cnt2){
printf("little P is winner!\n");
}else if (cnt1<cnt2){
printf("little Y is winner!\n");
}else{
printf("five five open\n");
}
}
return ;
}
/*
5 5
1 3 2 5 1
1 3 2 5 1
mig Y 3 2
*/

 

Contest1692 - 2019寒假集训第三十一场 UPC 11075 Problem D 小P的国际象棋的更多相关文章

  1. “全栈2019”Java多线程第三十一章:中断正在等待显式锁的线程

    难度 初级 学习时间 10分钟 适合人群 零基础 开发语言 Java 开发环境 JDK v11 IntelliJ IDEA v2018.3 文章原文链接 "全栈2019"Java多 ...

  2. 2019寒假训练营第三次作业part2 - 实验题

    热身题 服务器正在运转着,也不知道这个技术可不可用,万一服务器被弄崩了,那损失可不小. 所以, 决定在虚拟机上试验一下,不小心弄坏了也没关系.需要在的电脑上装上虚拟机和linux系统 安装虚拟机(可参 ...

  3. 2019寒假训练营第三次作业part1-网络空间安全概论第五章

    第五章 网络攻防技术 5.1 网路信息收集技术--网络踩点 黑客入侵系统之前,需要了解目标系统可能存在的: 管理上的安全缺陷和漏洞 网络协议安全缺陷与漏洞 系统安全缺陷与漏洞 黑客实施入侵过程中,需要 ...

  4. 2019牛客多校第二场F Partition problem 暴力+复杂度计算+优化

    Partition problem 暴力+复杂度计算+优化 题意 2n个人分成两组.给出一个矩阵,如果ab两个在同一个阵营,那么就可以得到值\(v_{ab}\)求如何分可以取得最大值 (n<14 ...

  5. 2019牛客多校第二场F Partition problem(暴搜)题解

    题意:把2n个人分成相同两组,分完之后的价值是val(i, j),其中i属于组1, j属于组2,已知val表,n <= 14 思路:直接dfs暴力分组,新加的价值为当前新加的人与不同组所有人的价 ...

  6. “全栈2019”Java多线程第三十章:尝试获取锁tryLock()方法详解

    难度 初级 学习时间 10分钟 适合人群 零基础 开发语言 Java 开发环境 JDK v11 IntelliJ IDEA v2018.3 文章原文链接 "全栈2019"Java多 ...

  7. “全栈2019”Java第三十一章:二维数组和多维数组详解

    难度 初级 学习时间 10分钟 适合人群 零基础 开发语言 Java 开发环境 JDK v11 IntelliJ IDEA v2018.3 文章原文链接 "全栈2019"Java第 ...

  8. 2019牛客多校第二场 A Eddy Walker(概率推公式)

    2019牛客多校第二场 A Eddy Walker(概率推公式) 传送门:https://ac.nowcoder.com/acm/contest/882/A 题意: 给你一个长度为n的环,标号从0~n ...

  9. Bootstrap <基础三十一>插件概览

    在前面布局组件中所讨论到的组件仅仅是个开始.Bootstrap 自带 12 种 jQuery 插件,扩展了功能,可以给站点添加更多的互动.即使不是一名高级的 JavaScript 开发人员,也可以着手 ...

随机推荐

  1. weblogic报错----Received exception while creating connection for pool "TDMSKD": The Network Adapter could not establish the connection

    <2017-8-16 上午08时58分37秒 CST> <Info> <WebLogicServer> <BEA-000377> <Startin ...

  2. Table 'performance_schema.session_variables' doesn't exist错误的一

    mysql驱动 jar 换到现在最新的mysql-connector-java-5.1.39-bin.jar

  3. MySQL并行复制的一个坑

    早上巡检数据库,发现一个延迟从库的sql_thread中断了. Last_SQL_Errno: 1755 Last_SQL_Error: Cannot execute the current even ...

  4. c/c++ vector,map,set,智能指针,综合运用的小例子

    标准库,智能指针,综合运用的小例子 功能说明:查询单词在文件中出现的次数,如果在同一行出现多次,只算一次. 比如查询单词:你好 输出的结果: 你好 出现了:2次 (行号 2)xxxxxxx 你好 (行 ...

  5. php配置文件php.ini的详细解析(续)

    file_uploads = On                                                                                 // ...

  6. LeetCode算法题-Reverse Bits(Java实现)

    这是悦乐书的第185次更新,第187篇原创 01 看题和准备 今天介绍的是LeetCode算法题中Easy级别的第44题(顺位题号是190).给定32位无符号整数,求它的反转位.例如: 输入:4326 ...

  7. 《Linux服务器的监控》

    本文地址:http://www.cnblogs.com/aiweixiao/p/7131532.html 原文地址(公众号):http://t.cn/RKwmqUs 点击关注 微信公众号 1. 监控概 ...

  8. Java面试知识点之线程篇(二)

    前言:接上篇,这里继续对java线程相关知识点进行总结. 1.notify和notifyall的区别 notify()方法能够唤醒一个正在等待该对象的monitor的线程,当有多个线程都在等待该对象的 ...

  9. tar只解压tar包中某个文件

    如果tar包很大,而只想解压出其中某个文件.方法如下: 只想解压出Redis-1.972.tar  中的Changes文件,来查看有哪些更改. [root@uplooking]# tar -tf Re ...

  10. Flask 框架 重定向,捕获异常,钩子方法及使用jsonify在网页返回json数据

    Flask 框架中常用到重定向方法来实现路由的跳转 ,路由跳转又分为站内跳转和站外跳转 常用的站内跳转方法为url_for  而常用的站外跳转为redirect 在这里提示一下: 在使用两种方法是须调 ...