[Wc2009]shortest
终于把这题过了,了了我两年前写堵塞的交通一晚上无果的心结
因为是6要注意蛇皮走位啊!!这种-> S
//Achen
#include<bits/stdc++.h>
#define For(i,a,b) for(int i=(a);i<=(b);i++)
#define Rep(i,a,b) for(int i=(a);i>=(b);i--)
#define Formylove return 0
const int N=1e5+;
typedef long long LL;
typedef double db;
using namespace std;
int n,q,a[][N],tpa[],mx; template<typename T> void read(T &x) {
char ch=getchar(); T f=; x=;
while(ch!='-'&&(ch<''||ch>'')) ch=getchar();
if(ch=='-') f=-,ch=getchar();
for(;ch>=''&&ch<='';ch=getchar()) x=x*+ch-''; x*=f;
} #define inf 1e15
LL dl[N<<][][],dr[N<<][][],dm[N<<][][];
void copyit(int x,int y) {
For(i,,) For(j,,) dl[y][i][j]=dl[x][i][j],dr[y][i][j]=dr[x][i][j],dm[y][i][j]=dm[x][i][j];
}
void upd(int y,int ll,int rr) {
int x=mx+,lc=mx+,rc=mx+;
copyit(ll,lc); copyit(rr,rc);
For(i,,) For(j,,) For(k,,) {
dm[lc][i][j]=min(dm[lc][i][j],dm[lc][i][k]+dl[rc][k][j]);
dm[rc][i][j]=min(dm[rc][i][j],dm[rc][k][j]+dr[lc][k][i]);
}
For(i,,) For(j,,) {
dm[x][i][j]=inf;
For(k,,) dm[x][i][j]=min(dm[x][i][j],dm[lc][i][k]+dm[rc][k][j]);
}
For(i,,) For(j,,) {
dl[x][i][j]=dl[lc][i][j];
dr[x][i][j]=dr[rc][i][j];
For(k,,) dl[x][i][j]=min(dl[x][i][j],dm[lc][i][k]+dm[lc][j][k]);
For(k,,) dr[x][i][j]=min(dr[x][i][j],dm[rc][k][i]+dm[rc][k][j]);
}
copyit(x,y);
} #define lc (x<<1)
#define rc ((x<<1)|1)
#define mid ((l+r)>>1)
void updone(int x,int l) {
For(i,,) tpa[i]=(i?tpa[i-]:)+a[i][l];
For(i,,) For(j,,) {
LL ds=i>j?(tpa[i]-(j?tpa[j-]:)):(tpa[j]-(i?tpa[i-]:));
dl[x][i][j]=dr[x][i][j]=dm[x][i][j]=ds;
}
} void build(int x,int l,int r) {
if(l==r) { updone(x,l); return ; }
build(lc,l,mid); build(rc,mid+,r);
upd(x,lc,rc);
} void change(int x,int l,int r,int pos) {
if(l==r) { updone(x,l); return; }
if(pos<=mid) change(lc,l,mid,pos);
else change(rc,mid+,r,pos);
upd(x,lc,rc);
} int fl;
void qry(int x,int l,int r,int ql,int qr,int t) {
if(ql>qr) return ;
if(l>=ql&&r<=qr) {
if(!fl) copyit(x,t),fl=;
else upd(t,t,x); return ;
}
if(ql<=mid) qry(lc,l,mid,ql,qr,t);
if(qr>mid) qry(rc,mid+,r,ql,qr,t);
} int main() {
//freopen("2104.in","r",stdin);
//freopen("2104.out","w",stdout);
read(n); mx=(n<<);
For(i,,) For(j,,n) read(a[i][j]);
build(,,n);
read(q);
For(i,,q) {
int op,x,y,v,sx,sy,tx,ty;
read(op);
if(op==) {
read(x); read(y); read(v);
a[x-][y]=v; change(,,n,y);
}
else {
read(sx); read(sy); sx--;
read(tx); read(ty); tx--;
if(sy>ty) swap(sx,tx),swap(sy,ty);
fl=; qry(,,n,sy,ty,mx+);
fl=; qry(,,n,,sy-,mx+);
fl=; qry(,,n,ty+,n,mx+);
LL ans=dm[mx+][sx][tx];
if(sy!=) {
For(j,,) For(k,,) dr[mx+][sx][j]=min(dr[mx+][sx][j],dl[mx+][sx][k]+dr[mx+][k][j]-dl[mx+][sx][sx]);
For(k,,) ans=min(ans,dl[mx+][sx][sx]+dr[mx+][sx][k]+dm[mx+][k][tx]);
}
if(ty!=n) {
For(j,,) For(k,,) dl[mx+][j][tx]=min(dl[mx+][j][tx],dr[mx+][k][tx]+dl[mx+][j][k]-dr[mx+][tx][tx]);
For(k,,) ans=min(ans,dm[mx+][sx][k]+dl[mx+][k][tx]+dr[mx+][tx][tx]);
}
if(sy!=&&ty!=n) {
For(k,,) For(l,,)
ans=min(ans,dr[mx+][sx][k]+dm[mx+][k][l]+dl[mx+][l][tx]+dl[mx+][sx][sx]+dr[mx+][tx][tx]);
}
printf("%lld\n",ans);
}
}
Formylove;
}
[Wc2009]shortest的更多相关文章
- bzoj AC倒序
Search GO 说明:输入题号直接进入相应题目,如需搜索含数字的题目,请在关键词前加单引号 Problem ID Title Source AC Submit Y 1000 A+B Problem ...
- [LeetCode] Encode String with Shortest Length 最短长度编码字符串
Given a non-empty string, encode the string such that its encoded length is the shortest. The encodi ...
- [LeetCode] Shortest Distance from All Buildings 建筑物的最短距离
You want to build a house on an empty land which reaches all buildings in the shortest amount of dis ...
- [LeetCode] Shortest Word Distance III 最短单词距离之三
This is a follow up of Shortest Word Distance. The only difference is now word1 could be the same as ...
- [LeetCode] Shortest Word Distance II 最短单词距离之二
This is a follow up of Shortest Word Distance. The only difference is now you are given the list of ...
- [LeetCode] Shortest Word Distance 最短单词距离
Given a list of words and two words word1 and word2, return the shortest distance between these two ...
- [LeetCode] Shortest Palindrome 最短回文串
Given a string S, you are allowed to convert it to a palindrome by adding characters in front of it. ...
- Leetcode: Encode String with Shortest Length && G面经
Given a non-empty string, encode the string such that its encoded length is the shortest. The encodi ...
- LeetCode 214 Shortest Palindrome
214-Shortest Palindrome Given a string S, you are allowed to convert it to a palindrome by adding ch ...
随机推荐
- 每天一个Linux命令(41)iostat命令
iostat是I/O statistics(输入/输出统计)的缩写,对系统的磁盘操作活动进行监视.它的特点是汇报磁盘活动统计情况,同时也会汇报出CPU使用情况. (1)用法: ...
- 06_Hadoop配置伪分布式模式详解
查看IP地址,设为手动模式: 配置hadoop用户sudo权限 su切换到root身份,配置vim /etc/sudoers文件,加入 hadoop ALL=(root)NOPASSWD:ALL ...
- MyBatis传入多个参数 ,List集合
一.单个参数: public List<XXBean> getXXBeanList(String xxCode); <select id="getXXXBeanList&q ...
- 开发自己的composer package
参考:https://laravel-china.org/articles/6652/learn-to-develop-their-own-composer-package-and-to-use-pa ...
- Docker容器技术-第一个容器
一.第一个容器 1.Docker版本 A.community-edition社区版 Docker CE是免费的Docker产品的新名称,Docker CE包含了完整的Docker平台,非常适合开发人员 ...
- iOS_数据存取(二)
本节内容目录: 一.SQLite3 二.Core Data 一.SQlite3 SQLite3是⼀款开源的嵌入式关系型数据库,可移植性好.易使用.内存开销小SQLite3是⽆类型的,意味着你可以保存任 ...
- vmxnet3 丢包处理
https://vswitchzero.com/2017/09/26/vmxnet3-rx-ring-buffer-exhaustion-and-packet-loss/
- linux下ipython的安装
第一种:ipython源码安装ipython的源码下载页面为:https://pypi.python.org/pypi/ipython 或者是到git页面下载:https://github.com/i ...
- SSM mapper.xml
MyBatis 真正的力量是在映射语句中.这里是奇迹发生的地方.对于所有的力量,SQL 映射的 XML 文件是相当的简单.当然如果你将它们和对等功能的 JDBC 代码来比较,你会发现映射文件节省了大约 ...
- mapreduce实现学生平均成绩
思路: 首先从文本读入一行数据,按空格对字符串进行切割,切割后包含学生姓名和某一科的成绩,map输出key->学生姓名 value->某一个成绩 然后在reduce里面对成绩进行遍历 ...