zoukankan      html  css  js  c++  java
  • Codeforces Round #325 (Div. 2) B. Laurenty and Shop 前缀+后缀

                                                                                 B. Laurenty and Shop
     

    A little boy Laurenty has been playing his favourite game Nota for quite a while and is now very hungry. The boy wants to make sausage and cheese sandwiches, but first, he needs to buy a sausage and some cheese.

    The town where Laurenty lives in is not large. The houses in it are located in two rows, n houses in each row. Laurenty lives in the very last house of the second row. The only shop in town is placed in the first house of the first row.

    The first and second rows are separated with the main avenue of the city. The adjacent houses of one row are separated by streets.

    Each crosswalk of a street or an avenue has some traffic lights. In order to cross the street, you need to press a button on the traffic light, wait for a while for the green light and cross the street. Different traffic lights can have different waiting time.

    The traffic light on the crosswalk from the j-th house of the i-th row to the (j + 1)-th house of the same row has waiting time equal to aij(1 ≤ i ≤ 2, 1 ≤ j ≤ n - 1). For the traffic light on the crossing from the j-th house of one row to the j-th house of another row the waiting time equals bj (1 ≤ j ≤ n). The city doesn't have any other crossings.

    The boy wants to get to the store, buy the products and go back. The main avenue of the city is wide enough, so the boy wants to cross it exactly once on the way to the store and exactly once on the way back home. The boy would get bored if he had to walk the same way again, so he wants the way home to be different from the way to the store in at least one crossing.

    Figure to the first sample.

    Help Laurenty determine the minimum total time he needs to wait at the crossroads.

    Input

    The first line of the input contains integer n (2 ≤ n ≤ 50) — the number of houses in each row.

    Each of the next two lines contains n - 1 space-separated integer — values aij (1 ≤ aij ≤ 100).

    The last line contains n space-separated integers bj (1 ≤ bj ≤ 100).

    Output

    Print a single integer — the least total time Laurenty needs to wait at the crossroads, given that he crosses the avenue only once both on his way to the store and on his way back home.

    Sample test(s)
    input
    4
    1 2 3
    3 2 1
    3 2 2 3
    output
    12
    Note

    The first sample is shown on the figure above.

    In the second sample, Laurenty's path can look as follows:

    • Laurenty crosses the avenue, the waiting time is 3;
    • Laurenty uses the second crossing in the first row, the waiting time is 2;
    • Laurenty uses the first crossing in the first row, the waiting time is 1;
    • Laurenty uses the first crossing in the first row, the waiting time is 1;
    • Laurenty crosses the avenue, the waiting time is 1;
    • Laurenty uses the second crossing in the second row, the waiting time is 3.
    In total we get that the answer equals 11.

    In the last sample Laurenty visits all the crossings, so the answer is 4.

    题意:人从最右下角走到最左上角,只能竖穿同一条马路一次,问你最短路是多少

    题解:n<=50,枚举哪两条竖边,对上下路径取前缀,后缀就好了,O(n)。

    ///1085422276
    #include<bits/stdc++.h>
    using namespace std ;
    typedef long long ll;
    #define mem(a) memset(a,0,sizeof(a))
    #define meminf(a) memset(a,127,sizeof(a));
    #define TS printf("111111
    ");
    #define FOR(i,a,b) for( int i=a;i<=b;i++)
    #define FORJ(i,a,b) for(int i=a;i>=b;i--)
    #define READ(a,b,c) scanf("%d%d%d",&a,&b,&c)
    #define inf 1000000000
    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;
    }
    //****************************************
    #define maxn 1000000+10
    
    int mp[500][500],a[maxn],b[maxn],x[maxn],sum[maxn],nsum[maxn];
    int main()
    {
    
         int n=read();
         sum[1]=0;
         FOR(i,1,n-1)
         {
             scanf("%d",&a[i]);
            sum[i+1]=sum[i]+a[i];
         }
         FOR(i,1,n-1)
         {
             scanf("%d",&b[i]);
    
         }
         nsum[n]=0;
         for(int i=n-1;i>=1;i--)
         {
             nsum[i]=nsum[i+1]+b[i];
         }
         for(int i=1;i<=n;i++)
         {
             scanf("%d",&x[i]);
         }
         int ans=inf;
         for(int i=1;i<=n;i++)
         {
             for(int j=1;j<=n;j++)
             {
                 if(i!=j)
                 ans=min(ans,sum[i]+x[i]+nsum[i]+sum[j]+x[j]+nsum[j]);
             }
         }cout<<ans<<endl;
    
        return 0;
    }
    代码
  • 相关阅读:
    error :expected initializer before
    数字转字符
    转载转载转载指针占几个字节
    转载转载转载
    二维数组1
    响应式布局
    flex布局
    wepy踩坑经历
    css命名规范(转载)
    28.设计模式
  • 原文地址:https://www.cnblogs.com/zxhl/p/4875653.html
Copyright © 2011-2022 走看看