F - Laurenty and Shop

Time Limit:1000MS     Memory Limit:262144KB     64bit IO Format:%I64d & %I64u

Description

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.

Sample Input

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

Hint

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.

以为穿过主干道只能一次,所以总计有主干道种不同的走法,直接暴力,选择最小的两个就行。

#include <iostream>
#include <stdio.h>
#include <algorithm>
#define inf 0x7fffffff
using namespace std;
int main(){
int a[][];
int b[];
int n;
scanf("%d",&n);
int sum=;
for(int i=;i<n-;i++){
scanf("%d",&a[][i]);
//sum+=a[0][i];
}
for(int i=;i<n-;i++){
scanf("%d",&a[][i]);
sum+=a[][i];
}
int ans[]={inf,inf,inf};
for(int i=;i<n;i++)
scanf("%d",&b[i]);
sum+=b[];
ans[]=sum;
for(int i=;i<n;i++){
sum=sum-b[i-]+b[i];
sum=sum-a[][i-]+a[][i-];
ans[]=sum;
sort(ans,ans+);
//cout<<ans[0]<<" "<<ans[1]<<endl;
}
printf("%d\n",ans[]+ans[] );
return ; }

最新文章

  1. 【JavaScript】ES6 新语法
  2. c#文本转语音以及语音阅读小实例
  3. Oracle 时间差计算
  4. HDFS文件和HIVE表的一些操作
  5. Debug program crash with dump file.
  6. sql2005数据库转换成sql2000
  7. 【产品体验】支付宝Alipay9.0
  8. 启动android默认浏览器
  9. WinForm ListView
  10. Zookeeper学习笔记3
  11. Unity打开外部程序exe/Bat文件方案
  12. yum安装下的nginx,如何添加模块,和添加第三方模块
  13. ML平台_饿了么实践
  14. 【ApplicationListener】Springboot各类事件监听器
  15. centos7 firewall-cmd 理解多区域配置中的 firewalld 防火墙
  16. POJ3259 :Wormholes(SPFA判负环)
  17. Linux学习笔记:常用命令grep、iconv、cp、mv、rm
  18. Atitit opencv 模板匹配
  19. [NN] 随机VS批训练
  20. iOS 9应用开发教程之编辑界面与编写代码

热门文章

  1. [转]CodeSmith 基础教程
  2. iOS:导航控制器侧滑出栈实现
  3. android 开源项目集合
  4. Win8安装程序出现2502、2503错误解决方法
  5. Linux下libsvm的安装及简单练习
  6. C# 中的&quot;yield&quot;与 &quot;yield break&quot;使用
  7. [Functional Programming Monad] Combine Stateful Computations Using A State Monad
  8. Intent传递对象的方法
  9. iOS 使用NSUserdefault 保存自定义的 对象
  10. vue - src for components || router(index.js)