题解

每次按较长边把矩形分成两半,找一个中间轴,轴上的每个点跑一边最短路更新所有的答案

然后把矩形分成两半,递归下去

代码

  1. #include <bits/stdc++.h>
  2. #define enter putchar('\n')
  3. #define space putchar(' ')
  4. #define pii pair<int,int>
  5. #define fi first
  6. #define se second
  7. #define mp make_pair
  8. #define pb push_back
  9. #define eps 1e-8
  10. //#define ivorysi
  11. using namespace std;
  12. typedef long long int64;
  13. typedef double db;
  14. template<class T>
  15. void read(T &res) {
  16. res = 0;T f = 1;char c = getchar();
  17. while(c < '0' || c > '9') {
  18. if(c == '-') f = -1;
  19. c = getchar();
  20. }
  21. while(c >= '0' && c <= '9') {
  22. res = res * 10 - '0' + c;
  23. c = getchar();
  24. }
  25. res *= f;
  26. }
  27. template<class T>
  28. void out(T x) {
  29. if(x < 0) {x = -x;putchar('-');}
  30. if(x >= 10) out(x / 10);
  31. putchar('0' + x % 10);
  32. }
  33. int N,M,Q;
  34. int id(int x,int y) {return (x - 1) * M + y;}
  35. pii point(int s) {return mp((s - 1) / M + 1,(s - 1) % M + 1);}
  36. struct qry_node {
  37. int s,t,id;
  38. }qry[100005],tmp[100005];
  39. struct node {
  40. int to,next,val;
  41. }E[200005];
  42. int head[20005],sumE;
  43. int R[20005],C[20005],ans[100005],dis[20005];
  44. bool vis[20005];
  45. priority_queue<pii > que;
  46. void add(int u,int v,int c) {
  47. E[++sumE].to = v;
  48. E[sumE].next = head[u];
  49. E[sumE].val = c;
  50. head[u] = sumE;
  51. }
  52. bool in_Matrix(int x,int X1,int Y1,int X2,int Y2) {
  53. pii p = point(x);
  54. return p.fi >= X1 && p.fi <= X2 && p.se >= Y1 && p.se <= Y2;
  55. }
  56. void Dijkstra(int st,int X1,int Y1,int X2,int Y2) {
  57. for(int i = X1 ; i <= X2 ; ++i) {
  58. for(int j = Y1 ; j <= Y2 ; ++j) {
  59. dis[id(i,j)] = 0x7fffffff;
  60. vis[id(i,j)] = 0;
  61. }
  62. }
  63. dis[st] = 0;
  64. que.push(mp(-dis[st],st));
  65. while(!que.empty()) {
  66. pii now = que.top();que.pop();
  67. if(vis[now.se]) continue;
  68. vis[now.se] = 1;
  69. int u = now.se;
  70. for(int i = head[u] ; i ; i = E[i].next) {
  71. int v = E[i].to;
  72. if(!vis[v] && in_Matrix(v,X1,Y1,X2,Y2) && dis[v] > dis[u] + E[i].val) {
  73. dis[v] = dis[u] + E[i].val;
  74. que.push(mp(-dis[v],v));
  75. }
  76. }
  77. }
  78. }
  79. void update(int &x,int y) {
  80. x = min(x,y);
  81. }
  82. void Solve(int l,int r,int X1,int Y1,int X2,int Y2) {
  83. if(Y1 > Y2 || X1 > X2) return;
  84. if(Y1 == Y2 && X1 == X2) return;
  85. if(l > r) return;
  86. if(X2 - X1 <= Y2 - Y1) {
  87. int mid = (Y2 + Y1) >> 1;
  88. for(int i = X1 ; i <= X2 ; ++i) {
  89. Dijkstra(id(i,mid),X1,Y1,X2,Y2);
  90. for(int k = l ; k <= r ; ++k) {
  91. update(ans[qry[k].id],dis[qry[k].s] + dis[qry[k].t]);
  92. }
  93. }
  94. int p = l - 1,m = l - 1;
  95. for(int k = l ; k <= r ; ++k) {
  96. if(in_Matrix(qry[k].s,X1,Y1,X2,mid - 1) && in_Matrix(qry[k].t,X1,Y1,X2,mid - 1)) {
  97. tmp[++p] = qry[k];
  98. }
  99. }
  100. m = p;
  101. for(int k = l ; k <= r ; ++k) {
  102. if(in_Matrix(qry[k].s,X1,mid + 1,X2,Y2) && in_Matrix(qry[k].t,X1,mid + 1,X2,Y2)) {
  103. tmp[++p] = qry[k];
  104. }
  105. }
  106. for(int i = l ; i <= p ; ++i) qry[i] = tmp[i];
  107. Solve(l,m,X1,Y1,X2,mid - 1);
  108. Solve(m + 1,p,X1,mid + 1,X2,Y2);
  109. }
  110. else {
  111. int mid = (X1 + X2) >> 1;
  112. for(int j = Y1 ; j <= Y2 ; ++j) {
  113. Dijkstra(id(mid,j),X1,Y1,X2,Y2);
  114. for(int k = l ; k <= r ; ++k) {
  115. update(ans[qry[k].id],dis[qry[k].s] + dis[qry[k].t]);
  116. }
  117. }
  118. int p = l - 1,m = l - 1;
  119. for(int k = l ; k <= r ; ++k) {
  120. if(in_Matrix(qry[k].s,X1,Y1,mid - 1,Y2) && in_Matrix(qry[k].t,X1,Y1,mid - 1,Y2)) {
  121. tmp[++p] = qry[k];
  122. }
  123. }
  124. m = p;
  125. for(int k = l ; k <= r ; ++k) {
  126. if(in_Matrix(qry[k].s,mid + 1,Y1,X2,Y2) && in_Matrix(qry[k].t,mid + 1,Y1,X2,Y2)) {
  127. tmp[++p] = qry[k];
  128. }
  129. }
  130. for(int i = l ; i <= p ; ++i) qry[i] = tmp[i];
  131. Solve(l,m,X1,Y1,mid - 1,Y2);
  132. Solve(m + 1,p,mid + 1,Y1,X2,Y2);
  133. }
  134. }
  135. void Init() {
  136. read(N);read(M);
  137. for(int i = 1 ; i <= N ; ++i) {
  138. for(int j = 1 ; j <= M - 1; ++j) {
  139. read(R[id(i,j)]);
  140. add(id(i,j),id(i,j + 1),R[id(i,j)]);
  141. add(id(i,j + 1),id(i,j),R[id(i,j)]);
  142. }
  143. }
  144. for(int i = 1 ; i <= N - 1 ; ++i) {
  145. for(int j = 1 ; j <= M ; ++j) {
  146. read(C[id(i,j)]);
  147. add(id(i,j),id(i + 1,j),C[id(i,j)]);
  148. add(id(i + 1,j),id(i,j),C[id(i,j)]);
  149. }
  150. }
  151. read(Q);
  152. int x,y;
  153. for(int i = 1 ; i <= Q ; ++i) {
  154. read(x);read(y);qry[i].s = id(x,y);
  155. read(x);read(y);qry[i].t = id(x,y);
  156. qry[i].id = i;
  157. ans[i] = 0x7fffffff;
  158. if(qry[i].s == qry[i].t) ans[i] = 0;
  159. }
  160. }
  161. int main() {
  162. #ifdef ivorysi
  163. freopen("f1.in","r",stdin);
  164. #endif
  165. Init();
  166. Solve(1,Q,1,1,N,M);
  167. for(int i = 1 ; i <= Q ; ++i) {out(ans[i]);enter;}
  168. }

【LOJ】#2090. 「ZJOI2016」旅行者的更多相关文章

  1. @loj - 2090@ 「ZJOI2016」旅行者

    目录 @description@ @solution@ @accepted code@ @details@ @description@ 小 Y 来到了一个新的城市旅行.她发现了这个城市的布局是网格状的 ...

  2. 2090. 「ZJOI2016」旅行者 分治,最短路

    2090. 「ZJOI2016」旅行者 链接 loj 思路 \((l,mid)(mid+1,r)\).考虑跨过mid的贡献. 假设选的中间那条线的点为gzy,贡献为\(dis(x,gzy)+dis(g ...

  3. 「ZJOI2016」旅行者 解题报告

    「ZJOI2016」旅行者 对网格图进行分治. 每次从中间选一列,然后枚举每个这一列的格子作为起点跑最短路,进入子矩形时把询问划分一下,有点类似整体二分 至于复杂度么,我不会阿 Code: #incl ...

  4. loj2090 「ZJOI2016」旅行者

    分治+最短路,很套路的 #include <algorithm> #include <iostream> #include <cstring> #include & ...

  5. @loj - 2093@ 「ZJOI2016」线段树

    目录 @description@ @solution@ @accepted code@ @details@ @description@ 小 Yuuka 遇到了一个题目:有一个序列 a1,a2,..., ...

  6. @loj - 2092@ 「ZJOI2016」大森林

    目录 @description@ @solution@ @accepted code@ @details@ @description@ 小 Y 家里有一个大森林,里面有 n 棵树,编号从 1 到 n. ...

  7. @loj - 2091@ 「ZJOI2016」小星星

    目录 @description@ @solution@ @accepted code@ @details@ @description@ 小 Y 是一个心灵手巧的女孩子,她喜欢手工制作一些小饰品.她有 ...

  8. 「ZJOI2016」解题报告

    「ZJOI2016」解题报告 我大浙的省选题真是超级神仙--这套已经算是比较可做的了. 「ZJOI2016」旅行者 神仙分治题. 对于一个矩形,每次我们从最长边切开,最短边不会超过 \(\sqrt{n ...

  9. Loj #2192. 「SHOI2014」概率充电器

    Loj #2192. 「SHOI2014」概率充电器 题目描述 著名的电子产品品牌 SHOI 刚刚发布了引领世界潮流的下一代电子产品--概率充电器: 「采用全新纳米级加工技术,实现元件与导线能否通电完 ...

随机推荐

  1. MT【203】连续型的最值

    (北大自招)已知$-6\le x_i\le 10 (i=1,2,\cdots,10),\sum\limits_{i=1}^{10}x_i=50,$当$\sum\limits_{i=1}^{10}x^2 ...

  2. KUR-Couriers

    题目链接: QwQ Solution: 以权值为下标,对每个点建树 对于x点,以它为根的树涵盖的是1到x区间内每个数出现的次数 Code: #include<bits/stdc++.h> ...

  3. debian9部署ownCloud

    ownCloud是一个开源的私有云存储,支持外接存储,具有良好的扩展性.ownCloud是传统的C/S架构,支持目前各大流行平台.服务端客户端实时同步,使用体验非常好. ownCloud is Wed ...

  4. 【洛谷P1214】等差数列

    题目大意:列出从一个给定上界的双平方数集合中选出若干个数,组成长度为 N 的等差数列的首项和公差. 题解:首先,因为是在双平方数集合上的等差数列,而且根据题目范围可知,上界不超过 2e5,可以先打表, ...

  5. 3分钟读懂移动端rem使用方法

    1.为什么要用rem 博客很久没写了,原因很简单. 最近接手了一个项目,要同时做PC和移动端的页面,之前没接触过,但毕竟给钱的是大爷,所以还是硬着头皮上了. 移动端最麻烦的是什么? 不同分辨率适配! ...

  6. Hadoop生态圈-Flume的主流Channel源配置

    Hadoop生态圈-Flume的主流Channel源配置 作者:尹正杰 版权声明:原创作品,谢绝转载!否则将追究法律责任.   一. 二. 三.

  7. springboot(五):springboot整合shiro-登录认证和权限管理

    http://z77z.oschina.io/ http://www.cnblogs.com/aqsunkai/category/982003.html https://www.cnblogs.com ...

  8. [整理]win7下VS2010遇到内存不足解决方发

    电脑重装Win7 64bit不久后,一天内VS2010使用久了,就会出现内存不足,实际内存使用情况却不是,显示内存已使用70%.以前没有遇到过,经网上查找,貌似是VS2010对内存计算会在某些情况下计 ...

  9. Linux - awk 文本处理工具三

    AWK 文件打印匹配 格式示例 awk '/Tom/' file # 打印匹配到得行 awk '/^Tom/{print $1}' # 匹配Tom开头的行 打印第一个字段 awk '$1 !~ /ly ...

  10. linux网络配置原理

    一.网络连接的基本原理 http://www.cnblogs.com/dyllove98/archive/2013/08/06/3241294.html