题意 : 给出 N 个点,各个点之间的路径长度用给出的下三角矩阵表示,上上角矩阵和下三角矩阵是一样的,主对角线的元素都是 0 代表自己到达自己不用花费,现在问你从 1 到 N 的最短路,矩阵的 x 代表点间无法互相到达

分析 : 最短路模板…… 就是在输入的时候需要将字符串变成整数、自己写也可以,也可以使用 atoi(char *)函数,其作用是将字符串数组变成整数,复杂度为 O(n)

  1. #include<bits/stdc++.h>
  2. using namespace std;
  3. ;
  4. const int INF = 0x3f3f3f3f;
  5. typedef pair<int, int> HeapNode;
  6.  
  7. struct EDGE{ int v, nxt, w; };
  8. int Head[maxn], Dis[maxn];
  9. EDGE Edge[maxn*maxn];
  10. int N, cnt;
  11. inline void init()
  12. {
  13. ; i<=N; i++)
  14. Head[i]=-, Dis[i]=INF;
  15. cnt = ;
  16. }
  17.  
  18. inline void AddEdge(int from, int to, int weight)
  19. {
  20. Edge[cnt].v = to;
  21. Edge[cnt].w = weight;
  22. Edge[cnt].nxt = Head[from];
  23. Head[from] = cnt++;
  24. }
  25.  
  26. int Dijkstra(int st)
  27. {
  28. priority_queue< HeapNode, vector<HeapNode>, greater<HeapNode> > Heap;
  29. Dis[st] = ;
  30. Heap.push(make_pair(, st));
  31. while(!Heap.empty()){
  32. pair<int, int> T = Heap.top(); Heap.pop();
  33. if(T.first != Dis[T.second]) continue;
  34. ; i=Edge[i].nxt){
  35. int Eiv = Edge[i].v;
  36. if(Dis[Eiv] > Dis[T.second] + Edge[i].w){
  37. Dis[Eiv] = Dis[T.second] + Edge[i].w;
  38. Heap.push(make_pair(Dis[Eiv], Eiv));
  39. }
  40. }
  41. }
  42. ;
  43. ; i<=N; i++)
  44. ret = max(ret, Dis[i]);
  45. return ret;
  46. }
  47. ];
  48. int main(void)
  49. {
  50.  
  51. while(~scanf("%d", &N)){
  52. init();
  53. ; i<=N; i++){
  54. ; j<i; j++){
  55. scanf("%s", Digit);
  56. ] != 'x'){
  57. int weight = atoi(Digit);
  58. AddEdge(i, j, weight);
  59. AddEdge(j, i, weight);
  60. }
  61. }
  62. }
  63. printf());
  64. }
  65.  
  66. ;
  67. }

POJ 1502 MPI MaeIstrom ( 裸最短路 || atoi系统函数 )的更多相关文章

  1. POJ 1502 MPI Maelstrom(最短路)

    MPI Maelstrom Time Limit: 1000MS   Memory Limit: 10000K Total Submissions: 4017   Accepted: 2412 Des ...

  2. POJ 1502 MPI Maelstrom / UVA 432 MPI Maelstrom / SCU 1068 MPI Maelstrom / UVALive 5398 MPI Maelstrom /ZOJ 1291 MPI Maelstrom (最短路径)

    POJ 1502 MPI Maelstrom / UVA 432 MPI Maelstrom / SCU 1068 MPI Maelstrom / UVALive 5398 MPI Maelstrom ...

  3. POJ 1502 MPI Maelstrom (最短路)

    MPI Maelstrom Time Limit: 1000MS   Memory Limit: 10000K Total Submissions: 6044   Accepted: 3761 Des ...

  4. POJ 1502 MPI Maelstrom [最短路 Dijkstra]

    传送门 MPI Maelstrom Time Limit: 1000MS   Memory Limit: 10000K Total Submissions: 5711   Accepted: 3552 ...

  5. POJ 1502 MPI Maelstrom

    MPI Maelstrom Time Limit : 2000/1000ms (Java/Other)   Memory Limit : 20000/10000K (Java/Other) Total ...

  6. POJ 1502 MPI Maelstrom (Dijkstra)

    题目链接:http://poj.org/problem?id=1502 题意是给你n个点,然后是以下三角的形式输入i j以及权值,x就不算 #include <iostream> #inc ...

  7. (简单) POJ 1502 MPI Maelstrom,Dijkstra。

    Description BIT has recently taken delivery of their new supercomputer, a 32 processor Apollo Odysse ...

  8. POJ 1502 MPI Maelstrom(模板题——Floyd算法)

    题目: BIT has recently taken delivery of their new supercomputer, a 32 processor Apollo Odyssey distri ...

  9. POJ - 1502 MPI Maelstrom 路径传输Dij+sscanf(字符串转数字)

    MPI Maelstrom BIT has recently taken delivery of their new supercomputer, a 32 processor Apollo Odys ...

随机推荐

  1. 阶段1 语言基础+高级_1-3-Java语言高级_06-File类与IO流_05 IO字符流_3_字符输出流_Writer类&FileWriter类

  2. 阶段1 语言基础+高级_1-3-Java语言高级_04-集合_04 数据结构_1_数据结构_栈

    2.1 数据结构有什么用? 当你用着java里面的容器类很爽的时候,你有没有想过,怎么ArrayList就像一个无限扩充的数组,也好像链表之类 的.好用吗?好用,这就是数据结构的用处,只不过你在不知不 ...

  3. 测开之路一百二十四:flask之MVC响应过程

    MVC流程 原本的请求响应 结构: 视图: from flask import Flask, render_template app = Flask(__name__) @app.route(&quo ...

  4. JMeterContext----上下文

    http://jmeter.apache.org/api/org/apache/jmeter/threads/JMeterContext.html org.apache.jmeter.threads ...

  5. 通过git新增、更新代码内容到github

    github可用于个人用户托管公开项目,对于异地上传下载十分方便 1.  准备工作 2.  首次上传执行命令集合 3.  更新执行命令集合 4.  命令总结 1.准备工作 a.注册github帐号 , ...

  6. excel实现筛选去重操作

    前情提要: 做图表时,希望更新数据后能自动化更新图表,需要各种公式之间相互配合.此时的需求是,将A表中的不同用户登录的地点做一个图表统计. 1.创建透视表 以用户id和地点当做行标签制作透视表,透视表 ...

  7. Package manager has died异常PackageInfo 引发 Crash

    Android 获取 PackageInfo 引发 Crash 填坑 一般 Android 通过PackageInfo这个类来获取应用安装包信息,比如应用内包含的所有Activity名称.应用版本号之 ...

  8. Docker image 和 volume 的关系

    image :镜像 虚拟机容器需要加载image才能运行,镜像中打包了构建好服务的运行环境. Docker images are the basis of containers. An Image i ...

  9. JQ判断div是否隐藏

    1. $("#tanchuBg").css("display")   2. $("#tanchuBg").is(":visible ...

  10. 子页面中ifram高度自使用

    HTML: <iframe id="mainframe" name="mainframe" style="width: 100%; border ...