The Tourist Guide (旅游指南)

 https://cn.vjudge.net/problem/UVA-10099

 Mr. G. works as a tourist guide. His current assignment is to take some tourists from one city to another. Some two-way roads connect the cities. For each pair of neighboring cities there is a bus service that runs only between those two cities and uses the road that directly connects them. Each bus service has a limit on the maximum number of passengers it can carry. Mr. G. has a map showing the cities and the roads connecting them. He also has the information regarding each bus service. He understands that it may not always be possible for him to take all the tourists to the destination city in a single trip. For example, consider the following road map of 7 cities. The edges connecting the cities represent the roads and the number written on each edge indicates the passenger limit of the bus service that runs on that road.

 

                           

Now, if he wants to take 99 tourists from city 1 to city 7, he will require at least 5 trips, since he has to ride the bus with each group, and the route he should take is : 1 - 2 - 4 - 7.

But, Mr. G. finds it difficult to find the best route all by himself so that he may be able to take all the tourists to the destination city in minimum number of trips. So, he seeks your help.

 

Input

The input will contain one or more test cases. The first line of each test case will contain two integers: N (N<= 100) and R representing respectively the number of cities and the number of road segments. Then R lines will follow each containing three integers: C1, C2 and P. C1 andC2 are the city numbers and P (P> 1) is the limit on the maximum number of passengers to be carried by the bus service between the two cities. City numbers are positive integers ranging from 1 to N. The (R + 1)-th line will contain three integers: S, D and T representing respectively the starting city, the destination city and the number of tourists to be guided.

The input will end with two zeroes for N and R.

 

Output

For each test case in the input first output the scenario number. Then output the minimum number of trips required for this case on a separate line. Print a blank line after the output of each test case.

 

题意:n个点,r条路径,每条路径最多通过人数最多为v人,

求把v个游客从a点运送到b点,需要几辆车,!!!注意导游自己也算一个人!!!

思路:floyd找出两点间最大运送量,然后计算需要几躺即可

Code:

#include<stdio.h>
#include<string.h>
#include<algorithm>
using namespace std;
int map[110][110];
int main()
{
    int n,r,k=1;
    while(~scanf("%d %d",&n,&r)&&(n+r))
    {
        for(int i=1; i<=n; i++)
            for(int j=1; j<=n; j++)
                map[i][j]=map[j][i]=-1;
                int a,b,v;
        for(int i=0; i<r; i++)
        {
            scanf("%d %d %d",&a,&b,&v);
            map[a][b]=map[b][a]=v;
        }
        for(int k=1;k<=n;k++)
            for(int i=1;i<=n;i++)
            for(int j=1;j<=n;j++)
            map[i][j]=max(map[i][j],min(map[i][k],map[k][j]));///最小最大
        scanf("%d %d %d",&a,&b,&v);
        printf("Scenario #%d\n",k++);
        printf("Minimum Number of Trips = %d\n\n",v/(map[a][b]-1)+(v%map[a][b]?1:0));
    }
    return 0;
}

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

嵩韵儿

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值