博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
poj1847——Tram(dijkstra)
阅读量:2343 次
发布时间:2019-05-10

本文共 2315 字,大约阅读时间需要 7 分钟。

Description

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

3 2 1

2 2 3
2 3 1
2 1 2
Sample Output

0

一开始想复杂了,以为会有可能把方向扳回去的情况。其实只要把扳过去的次数当成边的权值就行,然后直接最短路

#include 
#include
#include
#include
#include
#include
#include
#include
#include
#define INF 0x3f3f3f3f#define MAXN 1010#define Mod 10001using namespace std;int map[1005][1005],cost[1005][1005],vis[1005],dis[1005],n,m;int p[MAXN],level[MAXN];void dijkstra(int s){ int i,j,min,v; for(i=1; i<=n; ++i) { dis[i]=map[s][i]; } vis[s]=1; for(i=1; i<=n; ++i) { min=INF; for(j=1; j<=n; ++j) { if(!vis[j]&&dis[j]
dis[v]+map[v][j]) { dis[j]=dis[v]+map[v][j]; } } } }}int main(){ int a,b,k,ki; while(~scanf("%d%d%d",&n,&a,&b)) { for(int i=1;i<=n;++i) for(int j=1;j<=n;++j) map[i][j]=INF; for(int i=1;i<=n;++i) { scanf("%d",&k); for(int j=0;j

转载地址:http://xscvb.baihongyu.com/

你可能感兴趣的文章
spring cloud config 属性加解密
查看>>
rabbitmq安装
查看>>
RabbitMQ 使用
查看>>
动态代理
查看>>
oracle中merge into用法解析
查看>>
MySQL Explain详解
查看>>
oracle性能监控
查看>>
Spring Boot 整合Servlet
查看>>
Spring Boot 整合Filter
查看>>
nginx 安装
查看>>
ngnix 详解
查看>>
IDEA创建spring boot项目
查看>>
IDEA安装插件
查看>>
HttpClient-02连接管理
查看>>
数据库连接池-配置 wallfilter问题解决-UncategorizedSQLException
查看>>
java根据文件流判断文件类型(后缀名)
查看>>
js常用操作事件
查看>>
linux 安装mysql
查看>>
利用SQL语句查询数据库中所有表
查看>>
ActiveMQ 安装
查看>>