传送门

终于把这题过了,了了我两年前写堵塞的交通一晚上无果的心结

因为是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的更多相关文章

  1. bzoj AC倒序

    Search GO 说明:输入题号直接进入相应题目,如需搜索含数字的题目,请在关键词前加单引号 Problem ID Title Source AC Submit Y 1000 A+B Problem ...

  2. [LeetCode] Encode String with Shortest Length 最短长度编码字符串

    Given a non-empty string, encode the string such that its encoded length is the shortest. The encodi ...

  3. [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 ...

  4. [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 ...

  5. [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 ...

  6. [LeetCode] Shortest Word Distance 最短单词距离

    Given a list of words and two words word1 and word2, return the shortest distance between these two ...

  7. [LeetCode] Shortest Palindrome 最短回文串

    Given a string S, you are allowed to convert it to a palindrome by adding characters in front of it. ...

  8. 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 ...

  9. LeetCode 214 Shortest Palindrome

    214-Shortest Palindrome Given a string S, you are allowed to convert it to a palindrome by adding ch ...

随机推荐

  1. python 课堂笔记-for语句

    for i in range(10): print("----------",i) for j in range(10): print("world",j) i ...

  2. $git学习总结系列(1)——基本用法

    廖雪峰的官方网站:http://www.liaoxuefeng.com/ 本文是学习廖雪峰的官方网站上git教程git基本用法的总结,详细内容可以进入廖雪峰的官方网站查看. 注:本文中的主要内容都是基 ...

  3. Ubuntu系统常用操作命令

    1.基本命令: sudo 提升用户权限为root用户 ls 显示文件内容 cd 进入指定路径,后接路径参数 如cd /进入根目录 cd -进入用户目录 cd ..返回上一级目录 mv xx.txt x ...

  4. 移植opencv2.4.9到android过程记录

    http://blog.csdn.net/brightming/article/details/50606463 在移植到arm开发板的时候已经说过,OpenCV已经为各平台准备了一套cmake交叉编 ...

  5. FreeRtos堆栈检测应用

    Free rtos每个任务都有自己的栈空间,每个任务需要的栈大小也是不同的.如果堆栈过小就会造成栈溢出,有时候栈溢出发生在某种特定顺序的任务切换中,比较难检测出.所以前期测试和监控任务栈用量就显得尤其 ...

  6. BFC与边距重叠详解

    1.什么是BFC? 在解释 BFC 是什么之前,需要先介绍 Box.Formatting Context的概念. Box: CSS布局的基本单位Box 是 CSS 布局的对象和基本单位, 直观点来说, ...

  7. 0801 RESTAPI设计,DRF 序列化

    1.内容回顾    1.restframework serializer(序列化)的简单使用                QuereySet([obj,obj,obj])  -->  JSON ...

  8. python的语法错误总结

    1.keyerror一般是你使用字典里不存在的key产生的错误. 2.TypeError一般是使用的数据类型不符合要求 join函数要求a都是string

  9. RazorEngine性能研究(反射的延深)

    先说下结论 1)RazorEngine 确实很慢,编译过程特别慢,编译过后仍不适合大量重复调用的情况(一次调用可以接受). 2 )   RazorEngine 和 asp.net mvc 里的Razo ...

  10. 30道linux运维面试题(很精典)

    https://zhangge.net/1986.html 1.linux 如何挂在 windows 下的共享目录         Shell   1 mount.cifs //192.168.1.3 ...