这是一道很简单的图论题,只要使用宽度优先搜索(BFS)标记节点间距离即可。

我的解题代码如下:

  1. #include <iostream>
  2. #include <cstdio>
  3. #include <cstring>
  4. #include <cmath>
  5. #include <cstdlib>
  6. #include <string>
  7. #include <algorithm>
  8.  
  9. #include <queue>
  10. using namespace std;
  11.  
  12. int adj[20][20];
  13. int dis[20]; //为正时表示各点到s的距离,为-1时表示该点还未被bfs遇到
  14. int SP(int s,int t)
  15. {//使用BFS,返回t到s的最短距离
  16. memset(dis,-1,sizeof(dis));
  17. queue<int> q;
  18. dis[s]=0;
  19. q.push(s);
  20. while(!q.empty())
  21. {
  22. int u=q.front(); q.pop();
  23. if(u==t) break;
  24. for(int j=0; j<20; j++) if(dis[j]<0 && adj[u][j])
  25. {
  26. q.push(j);
  27. dis[j]=dis[u]+1; //j到s的距离为u到s的距离+1
  28. }
  29. }
  30. return dis[t];
  31. }
  32. int main()
  33. {
  34. int X,T=0;
  35. while(scanf("%d",&X)==1)
  36. {
  37. int tmp;
  38. memset(adj,0,sizeof(adj));
  39. for(int j=0; j<X; j++)
  40. {
  41. scanf("%d",&tmp); adj[0][tmp-1]=adj[tmp-1][0]=1;
  42. }
  43. for(int i=1; i<19; i++)
  44. {
  45. scanf("%d",&X);
  46. for(int j=0; j<X; j++)
  47. {
  48. scanf("%d",&tmp); adj[i][tmp-1]=adj[tmp-1][i]=1;
  49. }
  50. }
  51. scanf("%d",&tmp);
  52. printf("Test Set #%d\n",++T);
  53. int A,B;
  54. for(int i=0; i<tmp; i++)
  55. {
  56. scanf("%d %d",&A,&B);
  57. printf("%2d to %2d: %d\n",A,B,SP(A-1,B-1));
  58. }
  59. printf("\n");
  60. }
  61. return 0;
  62. }

附上题目如下:

Risk is a board game in which several opposing players attempt to conquer the world. The gameboard consists of a world map broken up into hypothetical countries. During a player's turn, armies stationed in one country are only allowed to attack only countries with which they share a common border. Upon conquest of that country, the armies may move into the newly conquered country.

During the course of play, a player often engages in a sequence of conquests with the goal of transferring a large mass of armies from some starting country to a destination country. Typically, one chooses the intervening countries so as to minimize the total number of countries that need to be conquered. Given a description of the gameboard with 20 countries each with between 1 and 19 connections to other countries, your task is to write a function that takes a starting country and a destination country and computes the minimum number of countries that must be conquered to reach the destination. You do not need to output the sequence of countries, just the number of countries to be conquered including the destination. For example, if starting and destination countries are neighbors, then your program should return one.

The following connection diagram illustrates the first sample input.

Input

Input to your program will consist of a series of country configuration test sets. Each test set will consist of a board description on lines 1 through 19. The representation avoids listing every national boundary twice by only listing the fact that country 
I
 borders country 
J
 when 
I
 < 
J
. Thus, the 
I
th line, where 
I
 is less than 20, contains an integer 
X
 indicating how many ``higher-numbered" countries share borders with country 
I
, then 
X
 distinct integers 
J
 greater than 
I
 and not exceeding 20, each describing a boundary between countries 
I
 and 
J
. Line 20 of the test set contains a single integer (


) indicating the number of country pairs that follow. The next 
N
 lines each contain exactly two integers (


) indicating the starting and ending countries for a possible conquest.

There can be multiple test sets in the input file; your program should continue reading and processing until reaching the end of file. There will be at least one path between any two given countries in every country configuration.

Output

For each input set, your program should print the following message ``
Test Set #
T
" where 
T
 is the number of the test set starting with 1 (left-justified starting in column 11).

The next NT lines each will contain the result for the corresponding test in the test set - that is, the minimum number of countries to conquer. The test result line should contain the start country code A right-justified in columns 1 and 2; the string `` to " in columns 3 to 6; the destination country code B right-justified in columns 7 and 8; the string ``" in columns 9 and 10; and a single integer indicating the minimum number of moves required to traverse from country A to countryB in the test set left-justified starting in column 11. Following all result lines of each input set, your program should print a single blank line.

Sample Input

  1. 1 3
  2. 2 3 4
  3. 3 4 5 6
  4. 1 6
  5. 1 7
  6. 2 12 13
  7. 1 8
  8. 2 9 10
  9. 1 11
  10. 1 11
  11. 2 12 17
  12. 1 14
  13. 2 14 15
  14. 2 15 16
  15. 1 16
  16. 1 19
  17. 2 18 19
  18. 1 20
  19. 1 20
  20. 5
  21. 1 20
  22. 2 9
  23. 19 5
  24. 18 19
  25. 16 20
  26. 4 2 3 5 6
  27. 1 4
  28. 3 4 10 5
  29. 5 10 11 12 19 18
  30. 2 6 7
  31. 2 7 8
  32. 2 9 10
  33. 1 9
  34. 1 10
  35. 2 11 14
  36. 3 12 13 14
  37. 3 18 17 13
  38. 4 14 15 16 17
  39. 0
  40. 0
  41. 0
  42. 2 18 20
  43. 1 19
  44. 1 20
  45. 6
  46. 1 20
  47. 8 20
  48. 15 16
  49. 11 4
  50. 7 13
  51. 2 16

Sample Output

  1. Test Set #1
  2. 1 to 20: 7
  3. 2 to 9: 5
  4. 19 to 5: 6
  5. 18 to 19: 2
  6. 16 to 20: 2
  7.  
  8. Test Set #2
  9. 1 to 20: 4
  10. 8 to 20: 5
  11. 15 to 16: 2
  12. 11 to 4: 1
  13. 7 to 13: 3
  14. 2 to 16: 4

UVa 567: Risk的更多相关文章

  1. UVA 567 Risk【floyd】

    题目链接: option=com_onlinejudge&Itemid=8&page=show_problem&problem=508">https://uva ...

  2. uva oj 567 - Risk(Floyd算法)

    /* 一张有20个顶点的图上. 依次输入每个点与哪些点直接相连. 并且多次询问两点间,最短需要经过几条路才能从一点到达另一点. bfs 水过 */ #include<iostream> # ...

  3. uva 12264 Risk

    https://vjudge.net/problem/UVA-12264 题意: 有很多个阵地,分为敌方和己方,每个士兵可以移动到相邻的己方的阵地,但是只能移动一步. 现在要让与敌方相邻的阵地中士兵最 ...

  4. uva 567

    Floyd 算法   就输入麻烦点 #include <iostream> #include <cstring> #include <cstdlib> #inclu ...

  5. UVA - 12264 Risk (二分,网络流)

    题意比较坑,移动完以后的士兵不能再次移动,不然样例都过不了... 最小值最大满足决策单调性所以二分答案,跑网络流验证是否可行. 这种题重点在建图,为了保证只移动一次,拆点,一个入点一个出点,到了出点的 ...

  6. UVA题目分类

    题目 Volume 0. Getting Started 开始10055 - Hashmat the Brave Warrior 10071 - Back to High School Physics ...

  7. Root :: AOAPC I: Beginning Algorithm Contests (Rujia Liu) Volume 7. Graph Algorithms and Implementation Techniques

    uva 10803 计算从任何一个点到图中的另一个点经历的途中必须每隔10千米 都必须有一个点然后就这样 floy 及解决了 ************************************* ...

  8. Risk UVA - 12264 拆点法+最大流+二分 最少流量的节点流量尽量多。

    /** 题目:Risk UVA - 12264 链接:https://vjudge.net/problem/UVA-12264 题意:给n个点的无权无向图(n<=100),每个点有一个非负数ai ...

  9. UVA - 1025 A Spy in the Metro[DP DAG]

    UVA - 1025 A Spy in the Metro Secret agent Maria was sent to Algorithms City to carry out an especia ...

随机推荐

  1. Castle ActiveRecord配置中需要注意的地方

    关于Castle 的开发可参考李会军老师的Castle 开发系列文章,里面有关于ActiveRecord学习实践系列和Castle IOC容器系列两个部分,是比较好的教程. 这里主要说明在Castle ...

  2. POJ 2299 Ultra-QuickSort 归并排序、二叉排序树,求逆序数

    题目链接: http://poj.org/problem?id=2299 题意就是求冒泡排序的交换次数,显然直接冒泡会超时,所以需要高效的方法求逆序数. 利用归并排序求解,内存和耗时都比较少, 但是有 ...

  3. 定位 - CoreLocation - 区域报警

    #import "ViewController.h" #import <CoreLocation/CoreLocation.h> @interface ViewCont ...

  4. Ajax、Comet、HTML 5 Web Sockets技术比较分析

    最近因为考虑研究B/S结构网站即时消息处理 参考了 JAVA怎么样实现即时消息提醒http://bbs.csdn.net/topics/330015611http://www.ibm.com/deve ...

  5. 深入解析java虚拟机-jvm运行机制

    转自oschina 一:JVM基础概念 JVM(Java虚拟机)一种用于计算设备的规范,可用不同的方式(软件或硬件)加以实现.编译虚拟机的指令集与编译微处理器的指令集非常类似.Java虚拟机包括一套字 ...

  6. 一个简单的DDraw应用程序2

    //------------------------------------------------------------------------- // 文件名 : 6_1.cpp// 创建者 : ...

  7. 好看的UI设计网站 www.ui.cn 和 插画网站 www.pixiv.net 千图网,界面很不错~

    http://www.ui.cn/?t=share#project http://www.pixiv.net/ http://www.flaticon.com/ www.58pic.com 那张 给人 ...

  8. 《鸟哥的Linux私房菜》读书笔记五

    1. Ctrl+alt+FX(X=1~6)可以切换到6个不同的文字界面终端(Terminal) 再按Ctrl+alt+F7就可以回到X Window,按Ctrl+alt+Backspace这是结束所有 ...

  9. perl unload utf-8 oracle Wide character in print at unload_oracle.pl line 105.

    #!/usr/bin/perl use DBI; use Encode; my $dbName = 'oadb'; my $dbUser = 'vxspace'; my $dbUserPass = ' ...

  10. WordPress NOSpam PTI插件‘comment_post_ID’参数SQL注入漏洞

    漏洞名称: WordPress NOSpam PTI插件‘comment_post_ID’参数SQL注入漏洞 CNNVD编号: CNNVD-201309-388 发布时间: 2013-09-24 更新 ...