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

思路:最短路随便搞一下

 #include <iostream>
#include <cstdio>
#include <cstring>
#include <set>
//#include <map>
#include <queue>
#define maxn 100009
using namespace std;
int a[maxn],map[][];
int main()
{
int n, m;
scanf("%d%d", &n, &m);
for(int i = ; i <= m; i++)scanf("%d",&a[i]);
for(int i = ; i <= n; i++)
{
for(int j = ; j <= n; j++)
{
scanf("%d",&map[i][j]);
}
}
for(int k = ; k <= n; k++)
{
for(int i = ; i <= n; i++)if(i != k)
{
for(int j = ; j <= n; j++)if(j != i && j != k)
{
map[i][j] = min(map[i][j], map[i][k] + map[k][j]);
}
}
}
int ans = map[][a[]] + map[a[m]][n];
for(int i = ; i < m; i++)
{
ans += map[a[i]][a[i+]];
}
printf("%d\n",ans);
return ;
}

最新文章

  1. javaScirpt事件详解-原生事件基础(一)
  2. Java 内存管理
  3. sql server 创建只读帐号
  4. 【Codeforces 722C】Destroying Array (数据结构、set)
  5. IT职业选择与定位
  6. delphi请求idhttp数据
  7. JBPM4中常用概念总结
  8. Linux中如何新建用户
  9. js-浏览器DOM
  10. Joomla JEvents 组件
  11. Ant 随想
  12. oracle 11g高级 安装图解(摘自网络)
  13. html-关于IE浏览器兼容性的问题,还有浏览器一直加载的问题。
  14. Ngnix技术研究系列2-基于Redis实现动态路由
  15. Spring源码情操陶冶-PropertyPlaceholderBeanDefinitionParser注解配置解析器
  16. 给div添加2个class
  17. Vs2015 当前不会命中断点,没有与此关联的可执行代码
  18. spark算子
  19. Socket.Io+HttpWebRequest 请求Api
  20. Volley Get网络请求

热门文章

  1. Install your Application into RaspberryPi2 and automatically start up
  2. 使用javap深入理解Java整型常量和整型变量的区别
  3. Makefile入门教程
  4. No package python-pip available
  5. springboot上传linux文件无法浏览,提示404错误
  6. Vue构建项目
  7. 继上一篇随笔,优化3张以上图片轮播React组件
  8. (55)zabbix模板嵌套
  9. hosts设置本地虚拟域名
  10. perl 对ENV环境变量的使用