1624: [Usaco2008 Open] Clear And Present Danger 寻宝之路

Time Limit: 5 Sec  Memory Limit: 64 MB
Submit: 377  Solved: 269
[Submit][Status]

Description

    农夫约翰正驾驶一条小艇在牛勒比海上航行.
    海上有N(1≤N≤100)个岛屿,用1到N编号.约翰从1号小岛出发,最后到达N号小岛.一
张藏宝图上说,如果他的路程上经过的小岛依次出现了Ai,A2,…,AM(2≤M≤10000)这样的序列(不一定相邻),那他最终就能找到古老的宝藏.  但是,由于牛勒比海有海盗出没.约翰知道任意两个岛屿之间的航线上海盗出没的概率,他用一个危险指数Dij(0≤Dij≤100000)来描述.他希望他的寻宝活动经过的航线危险指数之和最小.那么,在找到宝藏的前提下,这个最小的危险指数是多少呢?

Input

    第1行输入N和M,之后M行一行一个整数表示A序列,之后输入一个NxN的方阵,表示两两岛屿之间航线的危险指数.数据保证Dij=Dji,Dii=0.

Output

 
    最小的危险指数和.

Sample Input

3 4
1
2
1
3
0 5 1
5 0 2
1 2 0

INPUT DETAILS:

There are 3 islands and the treasure map requires Farmer John to
visit a sequence of 4 islands in order: island 1, island 2, island
1 again, and finally island 3. The danger ratings of the paths are
given: the paths (1, 2); (2, 3); (3, 1) and the reverse paths have
danger ratings of 5, 2, and 1, respectively.

Sample Output

7

OUTPUT DETAILS:

He can get the treasure with a total danger of 7 by traveling in
the sequence of islands 1, 3, 2, 3, 1, and 3. The cow map's requirement
(1, 2, 1, and 3) is satisfied by this route. We avoid the path
between islands 1 and 2 because it has a large danger rating.

HINT

 

Source

Silver

题解:乍一看这个要求的路径还得经过如下的点,然后取最短路径,吓我一跳——直到我看到了必须依次经过以下点。。。这样一来就没啥了,先是Floyd一遍弄出各个点之间的最短路径,然后既然要求必须按序经过且不一定相邻,则直接累加各个段的最短路就Accept啦*^_^*。。。(PS:Floyd时不要排除a[i,k]或者a[k,j]为零的状况,因为在这个题目中不存在不直接相连的点,就算真的出现0,代表的也是真正意义上的两点距离为零,我虽然没有因此跪过但还是觉得最好留心点。。。)

 var
i,j,k,m,n:longint;
l:int64;
a:array[..,..] of int64;
b:array[..] of longint;
begin
readln(n,m);
for i:= to m do
readln(b[i]);
b[]:=;
b[m+]:=n;
for i:= to n do
begin
for j:= to n do
read(a[i,j]);
readln;
end;
for k:= to n do
for i:= to n do
begin
if (i=k) then continue;
for j:= to n do
begin
if (i=j) or (k=j) then continue;
if (a[i,k]+a[k,j])<a[i,j] then a[i,j]:=a[i,k]+a[k,j];
end;
end;
for i:= to m do
l:=l+a[b[i],b[i+]];
writeln(l);
end.

最新文章

  1. jQuery第二篇 (帅哥)
  2. IOS中无缓存的图片载入
  3. [PHP]Yii2框架的坑
  4. mysql-删除日志文件命令详解
  5. 【项目经验】navicat工具 SQLServer数据库迁移MySQL
  6. SphinxSE 一些SQL查询语句
  7. yii2-user
  8. [转载] 动态链接库dll的 静态加载 与 动态加载
  9. Informix SDK對比
  10. C++中的多态
  11. selenium+python find_element_by_css_selector方法使用
  12. [转] C#中发送消息给指定的窗口,以及接收消息
  13. Uva 11198 - Dancing Digits
  14. 关于Jquery中ajax方法data参数用法的总结
  15. hdu_5904_LCIS(DP)
  16. SSE再学习:灵活运用SIMD指令6倍提升Sobel边缘检测的速度(4000*3000的24位图像时间由180ms降低到30ms)。
  17. (三):C++分布式实时应用框架——系统管理模块
  18. Jmeter分布式部署测试-----远程连接多台电脑做压力性能测试
  19. Android/IOS手机使用Fiddler抓包
  20. [SoapUI] 通过JSONAssert比较两个环境的JSON Response,定制化错误信息到Excel

热门文章

  1. OGG学习笔记03-单向复制简单故障处理
  2. HNOI2002(伸展树)
  3. Java错题
  4. 深圳尚学堂:JavaScript中常见的字符串操作
  5. T-SQL 语句
  6. 阿里云SSD等磁盘挂载方法(详细步骤完整版)
  7. 如何在linux下制作一个windows的可启动u盘?
  8. 使用rsync+inotify-tools+ssh实现文件实时同步
  9. LVS的十种调度算法
  10. 使用curl上传报错问题排查