zoukankan      html  css  js  c++  java
  • Codeforces Round #332 (Div. 2)A. Patrick and Shopping 水

    A. 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 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.

     题意:让你从中间这栋房子经过a,b后回到原点,最小话费距离是多少

    题解

    ///1085422276
    #include<bits/stdc++.h>
    using namespace std;
    
    typedef long long ll;
    #define mem(a) memset(a,0,sizeof(a))
    #define pb push_back
    
    inline ll read()
    {
        ll x=0,f=1;char ch=getchar();
        while(ch<'0'||ch>'9'){
            if(ch=='-')f=-1;ch=getchar();
        }
        while(ch>='0'&&ch<='9'){
            x=x*10+ch-'0';ch=getchar();
        }return x*f;
    }
    //****************************************
    const int N=100000+50;
    #define maxn 100000+5
    
    
    int main() {
        ll a=read(),b=read(),c=read();
        ll ans=min(a*2+2*c,c*2+b*2);
        cout<<min(min(a*2+b*2,ans),a+b+c)<<endl;
        return 0;
    }
    代码
  • 相关阅读:
    由于扩展配置问题而无法提供您请求的页面。如果该页面是脚本,请添加处理程序。
    浅析C#中ASP.NET页面的生存周期
    IIS:连接数、并发连接数、最大并发工作线程数、应用程序池的队列长度、应用程序池的最大工作进程数详解
    c#.net 生成清晰缩略图
    类序列化
    jQuery Validate验证框架使用
    XML序列化/反序列化数据库形式保存和读取。
    有关IT的小笑话
    百度富文本编辑器的使用!
    存储过程的使用
  • 原文地址:https://www.cnblogs.com/zxhl/p/4984241.html
Copyright © 2011-2022 走看看