【Codeforces 599A】Patrick and Shopping 最短路程

C - Patrick and Shopping

                   

Today Patrick waits for a visit from his friend Spongebob. To prepare for the visit, Patrick needs to buy some goodies in two stores located near his house. There is ad1 meter long road between his house and the first shop and ad2 meter long road between his house and the second shop. Also, there is a road of lengthd3 directly connecting these two shops to each other. Help Patrick calculate the minimum distance that he needs to walk in order to go to both shops and return to his house.

Patrick always starts at his house. He should visit both shops moving only along the three existing roads and return back to his house. He doesn't mind visiting the same shop or passing the same road multiple times. The only goal is to minimize the total distance traveled.

Input

The first line of the input contains three integers d1,d2,d3 (1 ≤ d1, d2, d3 ≤ 108) — the lengths of the paths.

  • d1 is the length of the path connecting Patrick's house and the first shop;
  • d2 is the length of the path connecting Patrick's house and the second shop;
  • d3 is the length of the path connecting both shops.
Output

Print the minimum distance that Patrick will have to walk in order to visit both shops and return to his house.

Example
Input
10 20 30
Output
60
Input
1 1 5
Output
4
Note

The first sample is shown on the picture in the problem statement. One of the optimal routes is: house first shop second shop house.

In the second sample one of the optimal routes is: house first shop house second shop house.


        这道题就是算最短距离,从家出发经过两个商店后,回到家。WA的原因如下:因为他肯定要先去到一个商店,之后有两个选择,去另一个商店和回家再去另一个商店,由于最后都是从商店回家,所以比较那两段距离,哪段近选哪段。这种想法错就错在认为他最终是从商店回到家中,因为还有一种可能就是原路返回比从那家商店到家的距离更近。代码如下:

#include<stdio.h>
int main(){
	int d1, d2, d3, ans;
	while(scanf("%d%d%d", &d1, &d2, &d3) != EOF){
		int min, max;
		min = d1 < d2 ? d1 : d2;
		max = d1+d2-min;
		if(d1+d2 <= d3)	ans = 2*(d1+d2);
		else{
			if(max < min+d3)	ans = d3 + d1 + d2;
			else ans = 2*(min+d3);
		}
		printf("%d\n", ans);
	}
	return 0;
}

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值