Patrick and Shopping Codeforces Round #332
Description
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 d1 meter long road between his house and the first shop and a d2 meter long road between his house and the second shop. Also, there is a road of length d3 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.
Sample Input
Input
10 20 30
Output
60
Input
1 1 5
Output
4
Hint
The first sample is shown on the picture in the problem statement. One of the optimal routes is: house first shop second shop house.
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 d1 meter long road between his house and the first shop and a d2 meter long road between his house and the second shop. Also, there is a road of length d3 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.
Sample Input
Input
10 20 30
Output
60
Input
1 1 5
Output
4
Hint
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.
#include<stdio.h>
int main()
{
int a,b,c,min,d[5],i;
while(scanf("%d%d%d",&a,&b,&c)!=EOF)
{
min=999999999;
d[0]=a+b+c;
d[1]=2*(a+b);
d[2]=2*(a+c);
d[3]=2*(b+c);
for(i=0;i<4;i++)
{
if(d[i]<min)
min=d[i];
}
printf("%d\n",min);
}
return 0;
}
相關文章
- Codeforces Round 955
- Educational Codeforces Round 163
- Codeforces Global Round 26
- Codeforces Global Round 27
- Codeforces Global Round 13
- Uncowed Forces Codeforces Round #334
- Codeforces Educational Round#98 A
- Codeforces Round 962(Div .3)
- Codeforces Global Round 26 (A - D)
- Educational Codeforces Round 172 Solution
- 2024.12.2 Educational Codeforces Round 172
- 【CodeForces訓練記錄】Codeforces Global Round 27
- Codeforces Round #541 (Div. 2)
- Codeforces Round #469 C A. Zebras
- Codeforces Round 940 (Div. 2)
- Codeforces Round 934 (Div. 2)
- Codeforces Round 943 (Div. 3)
- Codeforces Round 859 (Div. 4)
- Codeforces Round 933 (Div. 3)
- Codeforces Round 932 (Div. 2)
- Codeforces Round 934 (Div. 1)
- Codeforces Round 948 (Div. 2)
- Codeforces Round #639 (Div. 2)
- Codeforces Round #672 (Div. 2)
- Codeforces Round #682 (Div. 2)
- Codeforces Round #678 (Div. 2)
- Codeforces Round #673 (Div. 2)
- Codeforces Round 987 (Div. 2)
- Codeforces Round 976 (Div. 2)
- Codeforces Round 709 (Div. 1)
- Codeforces Round 975 (Div. 2)
- Codeforces Round 986 (Div. 2)
- Codeforces Round 981 (Div. 3)
- Codeforces Round 973 (Div. 2)
- Codeforces Round 966 (Div. 3)
- Codeforces Round 974 (Div. 3)
- Codeforces Round 969 (Div. 2)
- Codeforces Round 964 (Div. 4)