测评会员优惠活动进行中 · 开通 VIP,有效期内测评不限次 VIP 优惠中 · 测评不限次 立即查看

A10133. 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 a $d_{1}$ meter long road between his house and the first shop and a $d_{2}$ meter long road between his house and the second shop. Also, there is a road of length $d_{3}$ 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.

![](/uploads/acgo/image/f43656b257f9fce9_98f742d294de.jpeg)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.

输入格式

The first line of the input contains three integers $d_{1}$ , $d_{2}$ , $d_{3}$ ( $1<=d_{1},d_{2},d_{3}<=10^{8}$ ) — the lengths of the paths.

- $d_{1}$ is the length of the path connecting Patrick's house and the first shop;
- $d_{2}$ is the length of the path connecting Patrick's house and the second shop;
- $d_{3}$ is the length of the path connecting both shops.

输出格式

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

输入输出样例

输入 #1
10 20 30
输出 #1
60
输入 #2
1 1 5
输出 #2
4

说明/提示

The first sample is shown on the picture in the problem statement. One of the optimal routes is: house ![](/uploads/acgo/image/d21a159c6b6cdd5a_7d26ca16cbfe.jpeg) first shop ![](/uploads/acgo/image/d21a159c6b6cdd5a_7d26ca16cbfe.jpeg) second shop ![](/uploads/acgo/image/d21a159c6b6cdd5a_7d26ca16cbfe.jpeg) house.

In the second sample one of the optimal routes is: house ![](/uploads/acgo/image/d21a159c6b6cdd5a_7d26ca16cbfe.jpeg) first shop ![](/uploads/acgo/image/d21a159c6b6cdd5a_7d26ca16cbfe.jpeg) house ![](/uploads/acgo/image/d21a159c6b6cdd5a_7d26ca16cbfe.jpeg) second shop ![](/uploads/acgo/image/d21a159c6b6cdd5a_7d26ca16cbfe.jpeg) house.
上一题 去做题 下一题