A10133 | Patrick and Shopping
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
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.
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.
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.
- $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  first shop  second shop  house.
In the second sample one of the optimal routes is: house  first shop  house  second shop  house.
In the second sample one of the optimal routes is: house  first shop  house  second shop  house.
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted