有人收到Amex 给ATT enroll autopay的25刀没?# PennySaver - 省钱一族
Y*d
1 楼
R个银行,index从0开始到R-1,K个司机,R >= K+1。司机全部从第0个银行开始同时出
发,目的地为index 1到K的银行。任意一个司机可以把index 1到K中任意一个银行作为
他的目的地。但是一个银行只能接纳一个司机,如果多个司机同时开到同一个index为1
至K中的一个银行,那么其中一个司机下车,其余司机继续开去其他目的地银行 。银行
i 与银行 j 之间的路程长度用一个字符表示,'-'代表i和j不通,通的话这个字符会
是'1'至'9'之间的一个。每段路程是双向的,允许多个司机同时开。所有的司机都会选
最短的路程到达index 1到K的银行。如果任何一段路程在任意时间内只有一个司机在上
面开,那么那个司机就被认为是不安全行驶。在满足以上条件下,写程序算出最少能有
几个司机不安全行驶。
Constraints
1 <= K <= 49
- K+1 <= R <= 50
- Connections will contain R elements, where R is defined as K+1 <= R <= 50
- Each element of connections will contain R characters
- Value of each character in each element of connections will either '-', if
no connection is present, or one of: ['1','9']
- For each x, connections[x][x] will be '-'
- For each pair (x,y), connections[x][y] will be equal to connections[y][x]
- For each 1 <= x <= K, destination branch x will be always be reachable
from branch 0 using one or more connections
Input Format
Line 1: K
Line 2: Comma separated lists, specifying connections
Sample Input
3
-234,2---,3---,4---
Output
3
总共4个银行,3个司机。 只有从银行0到其他银行的3段路程。 在最快到达的前提下,
3个司机都只能不安全行驶。
发,目的地为index 1到K的银行。任意一个司机可以把index 1到K中任意一个银行作为
他的目的地。但是一个银行只能接纳一个司机,如果多个司机同时开到同一个index为1
至K中的一个银行,那么其中一个司机下车,其余司机继续开去其他目的地银行 。银行
i 与银行 j 之间的路程长度用一个字符表示,'-'代表i和j不通,通的话这个字符会
是'1'至'9'之间的一个。每段路程是双向的,允许多个司机同时开。所有的司机都会选
最短的路程到达index 1到K的银行。如果任何一段路程在任意时间内只有一个司机在上
面开,那么那个司机就被认为是不安全行驶。在满足以上条件下,写程序算出最少能有
几个司机不安全行驶。
Constraints
1 <= K <= 49
- K+1 <= R <= 50
- Connections will contain R elements, where R is defined as K+1 <= R <= 50
- Each element of connections will contain R characters
- Value of each character in each element of connections will either '-', if
no connection is present, or one of: ['1','9']
- For each x, connections[x][x] will be '-'
- For each pair (x,y), connections[x][y] will be equal to connections[y][x]
- For each 1 <= x <= K, destination branch x will be always be reachable
from branch 0 using one or more connections
Input Format
Line 1: K
Line 2: Comma separated lists, specifying connections
Sample Input
3
-234,2---,3---,4---
Output
3
总共4个银行,3个司机。 只有从银行0到其他银行的3段路程。 在最快到达的前提下,
3个司机都只能不安全行驶。