• Codeforces Round #325 (Div. 2) B


    B. Laurenty and Shop
    time limit per test
    1 second
    memory limit per test
    256 megabytes
    input
    standard input
    output
    standard output

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

    Examples
    input
    4
    1 2 3
    3 2 1
    3 2 2 3
    output
    12
    input
    3
    1 2
    3 3
    2 1 3
    output
    11
    input
    2
    1
    1
    1 1
    output
    4
    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列建筑物 对应的有 (n-1) *2个东 西建筑物的过马路的等待时间 n个南北建筑的过马路的等待时间 问从左上角到右下角往返的最短时间

         往返的轨迹不能相同 只能通过南北路口一次

    ,       so the boy wants to cross itexactly once on the way to the store and exactly once on the way back home.

    题解: n只有50 并且 南北路口只能通过一次 枚举出50种情况  排序后 因为往返轨迹不能相同 输出 ans[1]+ans[2];'

     1 #include<bits/stdc++.h>
     2 #include<iostream>
     3 #include<cstring>
     4 #include<cstdio>
     5 using namespace std;
     6 int n;
     7 int a[105];
     8 int b[105];
     9 int c[105];
    10 int ans[105];
    11 int main()
    12 {
    13     memset(ans,0,sizeof(ans));
    14     scanf("%d",&n);
    15     for(int i=1;i<=n-1;i++)
    16     scanf("%d",&a[i]);
    17     for(int i=1;i<=n-1;i++)
    18     scanf("%d",&b[i]);
    19     for(int j=1;j<=n;j++)
    20     scanf("%d",&c[j]);
    21     for(int i=0;i<=n-1;i++)
    22     {
    23         for(int k=1;k<=i;k++)
    24             ans[i+1]=ans[i+1]+a[k];
    25         for(int k=i+1;k<=n-1;k++)
    26              ans[i+1]=ans[i+1]+b[k];
    27         ans[i+1]+=c[i+1];    
    28     }
    29     sort(ans+1,ans+n+1);
    30     printf("%d
    ",ans[1]+ans[2]);
    31     return 0;
    32 } 
  • 相关阅读:
    threejs学习笔记01
    vue.nextTick()----(转)
    vue过滤器---123过滤成一二三
    太懒了,八百年没更新了。。。
    ie上 th td边框不显示
    简案快审----pdf.js使用总结
    201707问题记录
    echarts使用总结
    linux常见漏洞利用技术实践
    remote KG
  • 原文地址:https://www.cnblogs.com/hsd-/p/5484160.html
Copyright © 2020-2023  润新知