//神题目(题目一开始就理解错了)。。。

题目描述

Why did the cow cross the road? Well, one reason is that Farmer John's farm simply has a lot of roads, making it impossible for his cows to travel around without crossing many of them.

奶牛们为什么要穿马路?一个原因只是因为FJ的牧场的路实在是太多了,使得奶牛们每天不得不穿梭在许许多多的马路中央

FJ's farm is arranged as an N \times NN×N square grid of fields (3 \leq N \leq 1003≤N≤100), with a set of N-1N−1 north-south roads and N-1N−1 east-west roads running through the interior of the farm serving as dividers between the fields. A tall fence runs around the external perimeter, preventing cows from leaving the farm. Bessie the cow can move freely from any field to any other adjacent field (north, east, south, or west), as long as she carefully looks both ways before crossing the road separating the two fields. It takes her TT units of time to cross a road (0 \leq T \leq 1,000,0000≤T≤1,000,000).

FJ的牧场可以看作是一块 N\times NN×N 的田地(3\le N\le 1003≤N≤100),N-1N−1 条南北向的道路和 N-1N−1 条东西向的道路贯穿整个牧场,同时是每块田野的分界线。牧场的最外面是一圈高大的栅栏以防止奶牛离开牧场。Bessie只要穿过分离两块田野的道路,就可以从任何田野移动到与其相邻的田野里去(北,东,南或西)。当然,Bessie穿过每一条马路都是需要TT 时间的。(0\le T\le 1,000,0000≤T≤1,000,000)

One day, FJ invites Bessie to visit his house for a friendly game of chess. Bessie starts out in the north-west corner field and FJ's house is in the south-east corner field, so Bessie has quite a walk ahead of her. Since she gets hungry along the way, she stops at every third field she visits to eat grass (not including her starting field, but including possibly the final field in which FJ's house resides). Some fields are grassier than others, so the amount of time required for stopping to eat depends on the field in which she stops.

有一天,FJ邀请Bessie来他家下棋,Bessie从牧场的西北角出发,FJ的家在牧场的东南角。因为Bessie在中途可能会饿,所以她每走过三块田野就要停下来,享用她所在田野上的新鲜的牧草(不包括Bessie的出发点,但是可能会包括终点FJ的家),牧场上有些田野的牧草长得比其他地方茂盛,所以Bessie对应的停留时间也会变长。

Please help Bessie determine the minimum amount of time it will take to reach FJ's house.

请帮帮Bessie计算出她走到FJ家的最短时间。

输入输出格式

输入格式:

The first line of input contains NN and TT. The next NN lines each contain NN positive integers (each at most 100,000) describing the amount of time required to eat grass in each field. The first number of the first line is the north-west corner.

接下来 NN 行,每行 NN 个数表示每块田野Bessie需要停留的时间(每块最多不超过100,000100,000),第一行的第一块田野是牧场的西北角

输出格式:

Print the minimum amount of time required for Bessie to travel to FJ's house.

一行一个整数表示Bessie走到FJ家的最短时间

输入输出样例

输入样例#1: 复制

4 2
30 92 36 10
38 85 60 16
41 13 5 68
20 97 13 80
输出样例#1: 复制

31

说明

The optimal solution for this example involves moving east 3 squares (eating the "10"), then moving south twice and west once (eating the "5"), and finally moving south and east to the goal.

对于样例,Bessie先向东走过了三块田野(在“10”停留),再向南走两步,又向西走了一步(在“5”停留),最后向南走一步,再向东走一步到达FJ的家(不用停留),总共时间是15(停留时间)+16(穿马路时间)=31

感谢@jzqjzq 提供翻译

题目解释:牛可以往回走

例:    1 ——2——3

  牛可以1->2->1->2;

就可以类比于牛走一步和走三步(但是走一步时的时间也是加上走3步的时间)

将所有的方向枚举出来。。。然后。。宽搜?

没了。。。

(根本没有洛谷原来的题解麻烦嘛)

 #include<iostream>
#include<cstdio>
#include<cstring>
#include<cstdlib>
#include<queue>
using namespace std;
int n,v[][];
long long dis[][],t;
bool vis[][];
struct node
{
int x,y;
};
int dx[]={,,,-,,,,,-,-,-,-,,,,-};
int dy[]={,-,,,,-,,-,,-,,-,,-,,};
void spfa(int x,int y)
{
queue<node>q;
q.push((node){x,y});
memset(dis,0x7f,sizeof(dis));
dis[x][y]=; vis[x][y]=;
do
{
node u=q.front();q.pop();
vis[u.x][u.y]=;
for(int i=;i<;i++)
{ int tx=u.x+dx[i],ty=u.y+dy[i];
if(tx>=&&tx<=n&&ty>=&&ty<=n)
{
if(dis[tx][ty]>dis[u.x][u.y]+v[tx][ty]+t*)
{
dis[tx][ty]=dis[u.x][u.y]+v[tx][ty]+t*;
if(!vis[tx][ty])
{
vis[tx][ty]=;q.push((node){tx,ty});
}
}
}
}
}while(q.size()!=);
}
int main()
{ ios::sync_with_stdio(false);
cin>>n>>t;
for(int i=;i<=n;i++)
for(int j=;j<=n;j++)
cin>>v[i][j];
spfa(,);
long long ans;
ans=dis[n][n];//参照题解:牛不可能直接到达,所以得枚举终点3步之内的所有点的值+位移的时间;
ans=min(ans,dis[n][n-]+t);
ans=min(ans,dis[n-][n]+t);
ans=min(ans,dis[n][n-]+t*);
ans=min(ans,dis[n-][n]+t*);
ans=min(ans,dis[n-][n-]+t*);
printf("%lld",ans);
return ;
}

最新文章

  1. mysql——查询练习
  2. 一个优秀windows C++程序员的知识体系
  3. 第二篇,MVC框架
  4. rsync拉取远程文件
  5. 自定义View(三)--实现一个简单地流式布局
  6. 定制化Azure站点Java运行环境(3)
  7. Swift - 字符串(String)用法详解
  8. Nutch+HBase
  9. 终于购入Mac mini,发现HDMI接口与显示器不兼容,网购了一个VGA转换插头
  10. Java中正则表达式的几种用法
  11. System.Runtime.Serialization.SerializationException”类型的未经处理的异常在 System.Runtime.Serialization.dll 中发生
  12. 数据分析前戏:ipython使用技巧(上)
  13. mybatis的缓存简说
  14. 什么是CSR以及CSR的作用和生成
  15. boost.asio包装类st_asio_wrapper开发教程(2013.12.8更新)(二)
  16. PyQt--QTreeWidget
  17. ecstore-ftp设置,不能上传文件
  18. prompt
  19. 本地服务器搭建服务:mysql
  20. Ettercap之ARP+DNS欺骗

热门文章

  1. m&#39;ybatis 一对一 一对多 配置详解
  2. Eclipse中设置JDK、${user}变量
  3. idea 破解代码
  4. sql sever数据库常用的执行语句
  5. aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
  6. OD 实验(五) - 对 PE 结构的简单分析
  7. java 等额本金与等额本息
  8. Android 4 学习(18):搜索
  9. Netty面试题
  10. spring boot 项目打包到maven仓库供其它模块使用