Tram network in Zagreb consists of a number of intersections and rails connecting some of them. In every intersection there is a switch pointing to the one of the rails going out of the intersection. When the tram enters the intersection it can leave only in the direction the switch is pointing. If the driver wants to go some other way, he/she has to manually change the switch.

When a driver has do drive from intersection A to the intersection B he/she tries to choose the route that will minimize the number of times he/she will have to change the switches manually.

Write a program that will calculate the minimal number of switch changes necessary to travel from intersection A to intersection B.

Input

The first line of the input contains integers N, A and B, separated by a single blank character, 2 <= N <= 100, 1 <= A, B <= N, N is the number of intersections in the network, and intersections are numbered from 1 to N.

Each of the following N lines contain a sequence of integers separated by a single blank character. First number in the i-th line, Ki (0 <= Ki <= N-1), represents the number of rails going out of the i-th intersection. Next Ki numbers represents the intersections directly connected to the i-th intersection.Switch in the i-th intersection is initially pointing in the direction of the first intersection listed.

Output

The first and only line of the output should contain the target minimal number. If there is no route from A to B the line should contain the integer "-1".

Sample Input

  1. 3 2 1
  2. 2 2 3
  3. 2 3 1
  4. 2 1 2

Sample Output

  1. 0
    简述:题有点难懂,给你N组数以及起点A终点B,节点标号1-N,接下来每一行第一个数表示i-th连接有几个节点,后面的第一个数是默认方向不用改变,后续的都是需要改变一次方向。
    思路:看懂题意后就是一个最短路问题,默认方向权为0,改变为1,四种算法选一种即可,我这里用的是dijkstra,(其他三种在A题中有,这里就不写了),代码如下:
  1. const int maxm = ;
  2. const int INF = 0x7ffffff;
  3.  
  4. int N, A, B, d[maxm], vis[maxm];
  5.  
  6. struct Edge {
  7. int from, to, dist;
  8. Edge(int _from, int _to, int _dist) : from(_from), to(_to), dist(_dist){};
  9. };
  10.  
  11. struct Node {
  12. int from, dist;
  13. Node(int _from, int _dist) : from(_from), dist(_dist){}
  14. bool operator<(const Node &a)const {
  15. return a.dist < dist;
  16. }
  17. };
  18.  
  19. vector<Edge> edges;
  20. vector<int> G[maxm];
  21.  
  22. void addedge(int u, int v, int dist) {
  23. edges.push_back(Edge(u, v, dist));
  24. G[u].push_back(edges.size() - );
  25. }
  26.  
  27. void init() {
  28. for(int i = ; i <= N; ++i) {
  29. d[i] = INF;
  30. G[i].clear();
  31. }
  32. edges.clear();
  33. memset(vis, , sizeof(vis));
  34. }
  35.  
  36. int main() {
  37. while(scanf("%d%d%d", &N, &A, &B) != EOF) {
  38. init();
  39. for (int i = ; i <= N; ++i) {
  40. int t1, t2;
  41. scanf("%d", &t1);
  42. for(int j = ; j < t1; ++j) {
  43. scanf("%d", &t2);
  44. addedge(i, t2, j == ? : );
  45. }
  46. }
  47. priority_queue<Node> q;
  48. q.push(Node(A, ));
  49. d[A] = ;
  50. while(!q.empty()) {
  51. Node p = q.top();
  52. q.pop();
  53. if(vis[p.from])
  54. continue;
  55. vis[p.from] = ;
  56. int len = G[p.from].size();
  57. for(int i = ; i < len; ++i) {
  58. if(d[edges[G[p.from][i]].to] > d[p.from] + edges[G[p.from][i]].dist) {
  59. d[edges[G[p.from][i]].to] = d[p.from] + edges[G[p.from][i]].dist;
  60. q.push(Node(edges[G[p.from][i]].to, d[edges[G[p.from][i]].to]));
  61. }
  62. }
  63. }
  64. printf("%d\n", d[B] >= INF?-:d[B]);
  65. }
  66. return ;
  67. }
  1.  

Day4 - L - Tram POJ - 1847的更多相关文章

  1. Tram POJ - 1847

    题目链接:https://vjudge.net/problem/POJ-1847 思路:想从A到B使用开关少,想清楚了就是个简单的最短路,可以把不用开开关为权值0, 要开开关为权值1,就是求A到B开开 ...

  2. Tram POJ - 1847 spfa

    #include<iostream> #include<algorithm> #include<queue> #include<cstdio> #inc ...

  3. POJ 1847 Tram (最短路径)

    POJ 1847 Tram (最短路径) Description Tram network in Zagreb consists of a number of intersections and ra ...

  4. 最短路 || POJ 1847 Tram

    POJ 1847 最短路 每个点都有初始指向,问从起点到终点最少要改变多少次点的指向 *初始指向的那条边长度为0,其他的长度为1,表示要改变一次指向,然后最短路 =========高亮!!!===== ...

  5. poj 1847 最短路简单题,dijkstra

    1.poj  1847  Tram   最短路 2.总结:用dijkstra做的,算出a到其它各个点要改向的次数.其它应该也可以. 题意: 有点难懂.n个结点,每个点可通向ki个相邻点,默认指向第一个 ...

  6. poj 1847 Tram

    http://poj.org/problem?id=1847 这道题题意不太容易理解,n个车站,起点a,终点b:问从起点到终点需要转换开关的最少次数 开始的那个点不需要转换开关 数据: 3 2 1// ...

  7. [最短路径SPFA] POJ 1847 Tram

    Tram Time Limit: 1000MS Memory Limit: 30000K Total Submissions: 14630 Accepted: 5397 Description Tra ...

  8. POJ 1847 Tram (最短路)

    Tram 题目链接: http://acm.hust.edu.cn/vjudge/contest/122685#problem/N Description Tram network in Zagreb ...

  9. poj 1847 Tram【spfa最短路】

    Tram Time Limit: 1000MS   Memory Limit: 30000K Total Submissions: 12005   Accepted: 4365 Description ...

随机推荐

  1. el-select 选项值动态更新的问题

      如果 类似 el-select 等表单元素绑定了 类似 a.b 之类的属性,而不是直接的一级属性的话,当这个属性发生更改的时候,它的显示效果可能不会动态地进行更新,这个时候需要使用 Vue.$se ...

  2. ZOJ4103 Traveler(2019浙江省赛)

    构造+思维~ #include<bits/stdc++.h> using namespace std; ; int N,M,T; int visit[maxn]; stack<int ...

  3. icos下配置snake test

    Topo: # $language = "Python" # $interface = "1.0"# Author:Bing Song# Date:6/21/2 ...

  4. 【PAT甲级】1014 Waiting in Line (30 分)(队列维护)

    题面: 输入四个正整数N,M,K,Q(N<=20,M<=10,K,Q<=1000),N为银行窗口数量,M为黄线内最大人数,K为需要服务的人数,Q为查询次数.输入K个正整数,分别代表每 ...

  5. Thymeleaf的内置属性(转)

    原文链接: http://somefuture.iteye.com/blog/2253761 Thymeleaf是另一个Java视图模板引擎,使用上和FreeMarker各有千秋,不了解的可以从其他博 ...

  6. partition_show , a new version to check partition table status in sqlserver

    Dear all: I had put "partition_show" before . but this time it makes faster. partition_sho ...

  7. 用Navicat连接阿里云ECS服务器上的MySQL数据库,连接不上,并且报10060错误

    设置远程访问(使用root密码): grant all privileges on . to 'root' @'%' identified by '123456'; flush privileges; ...

  8. uniGUI之新窗口uniForm(19)

    然后 保存,在这里 重命名窗口 //主窗口 调用 // NewForm2.UniForm1.Show() ; //非阻塞 NewForm2.UniForm1.ShowModal();//阻塞 //子窗 ...

  9. apache服务器本质上说是一个TCP socket服务

    apache服务器本质上说是一个TCP socket服务,socket模型如下:  下面以worker MPM来说明apache代码中相应处理的位置在哪里: (以apache httpd 2.2.23 ...

  10. 再论谭浩强《C语言程序设计》

    一些同学学不好C语言,把罪责归于“因为教材是谭浩强写的”实在是很滑稽. 谭浩强老先生 1934 年生,现在已经 80 岁了.他 1958 年从清华大学自动控制系毕业,那年 24 岁.要知道 C 语言那 ...