[关闭]
@DingCao-HJJ 2015-10-04T12:41:07.000000Z 字数 2569 阅读 1375

sicily_1024 Magic Island

sicily DFS


题目

Constraints

Time Limit: 1 secs, Memory Limit: 32 MB

Description

There are N cities and N-1 roads in Magic-Island. You can go from one city to any other. One road only connects two cities. One day, The king of magic-island want to visit the island from the capital. No road is visited twice. Do you know the longest distance the king can go.

Input

There are several test cases in the input
A test case starts with two numbers N and K. (1<=N<=10000, 1<=K<=N). The cities is denoted from 1 to N. K is the capital.

The next N-1 lines each contain three numbers X, Y, D, meaning that there is a road between city-X and city-Y and the distance of the road is D. D is a positive integer which is not bigger than 1000.
Input will be ended by the end of file.

Output

One number per line for each test case, the longest distance the king can go.

Sample Input

3 1
1 2 10
1 3 20

Sample Output

20

题目大意

N个城市、(N-1)条路的岛,K为首都。从K出发,每条路只走一遍,问走过的最大距离。

思路

用变量maxDistance存所求最大距离。DFS搜索每个路径,当当前路径大于maxDistance时,当即更新。

代码

  1. // Copyright (c) 2015 HuangJunjie@SYSU(SNO:13331087).
  2. // sicily 1024: http://soj.sysu.edu.cn/1024
  3. #include <cstdio>
  4. #include <vector>
  5. #define MAX_SIZE 10000
  6. using namespace std;
  7. struct Road {
  8. int id_; // road id.
  9. int end_; // the other end of the road
  10. int length_; // the length of the road
  11. Road(int id, int end, int length) {
  12. id_ = id;
  13. end_ = end;
  14. length_ = length;
  15. }
  16. };
  17. int maxDistance;
  18. vector<Road> Roads[MAX_SIZE + 1]; // Roads[0] is useless
  19. bool visited[MAX_SIZE + 1]; // visited[0] is also useless
  20. // DFS searching the roads. for the implementation is recursive, the closed list
  21. // have to be global.
  22. // @Param start: a city that begin the visit.
  23. // @Param pathLength: gets a certain path's length. if the path is longer than
  24. // the max distance we knows, update the maxDistance.
  25. void DFS(int start, int pathLength = 0) {
  26. // for each road connected to start
  27. for (int i = 0; i < Roads[start].size(); i++) {
  28. // if the road is not visited
  29. if (!visited[Roads[start][i].id_]) {
  30. // visits it
  31. visited[Roads[start][i].id_] = true;
  32. // adds the road length to the path length
  33. pathLength += Roads[start][i].length_;
  34. // update the max distance
  35. if (pathLength > maxDistance) maxDistance = pathLength;
  36. // continue the path from the other end of the road
  37. DFS(Roads[start][i].end_, pathLength);
  38. // [IMPORTANT] back tracking
  39. pathLength -= Roads[start][i].length_;
  40. visited[Roads[start][i].id_] = false;
  41. }
  42. }
  43. }
  44. int main() {
  45. // the cities' number N and the capital's number K
  46. int N, K;
  47. while (scanf("%d %d", &N, &K) != EOF) {
  48. // initialization.
  49. maxDistance = 0;
  50. for (int i = 0; i <= MAX_SIZE; i++) {
  51. Roads[i].clear();
  52. visited[i] = false;
  53. }
  54. // gets the total N-1 roads.
  55. int start, end, length;
  56. for (int i = 1; i < N; i++) {
  57. scanf("%d %d %d", &start, &end, &length);
  58. // bidirenctional roads
  59. Roads[start].push_back(Road(i, end, length));
  60. Roads[end].push_back(Road(i, start, length));
  61. }
  62. // DFS the roads from the capital.
  63. DFS(K);
  64. // output the max distance visited.
  65. printf("%d\n", maxDistance);
  66. }
  67. return 0;
  68. }

参考

http://www.cnblogs.com/joyeecheung/p/3505124.html

添加新批注
在作者公开此批注前,只有你和作者可见。
回复批注