zoukankan      html  css  js  c++  java
  • CF div2 332 A

    A. Patrick and Shopping
    time limit per test
    1 second
    memory limit per test
    256 megabytes
    input
    standard input
    output
    standard output

    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 test(s)
    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.

    把所有的四种情况列出来,取一个最小的

     1 #include <cstdio>
     2 #include <cstring>
     3 #include <iostream>
     4 #include <stack>
     5 #include <queue>
     6 #include <map>
     7 #include <algorithm>
     8 #include <vector>
     9 
    10 using namespace std;
    11 
    12 const int maxn = 1000005;
    13 
    14 typedef long long LL;
    15 
    16 vector<int>G[maxn];
    17 
    18 int a[maxn];
    19 int res[maxn];
    20 
    21 
    22 int main()
    23 {
    24    LL b,c,d;
    25    cin>>b>>c>>d;
    26    LL ans = min(min(min(2*(b+d),(b+c+d)),2*(c+d)),2*(b+c));
    27    cout<<ans<<endl;
    28 
    29 
    30     return 0;
    31 }
    View Code
  • 相关阅读:
    iOS面试题及答案大总结
    iOS 画音频波形曲线 根据音频数据版
    iPhone-获取网络数据或者路径的文件名
    python语言使用yaml 管理selenium元素
    出现事故后我们怎么复盘分析
    如何提升测试质量,减少漏测
    robotframework环境搭建
    如何做ui自动化---步骤详解
    Jenkins报错Caused: java.io.IOException: Cannot run program "sh" (in directory "D:JenkinsJenkins_homeworkspacejmeter_test"): CreateProcess error=2, 系统找不到指定的文件。
    使用jmeter使用Jenkins发送自定义消息内容
  • 原文地址:https://www.cnblogs.com/lmlyzxiao/p/4985079.html
Copyright © 2011-2022 走看看