传统题 1000ms 256MiB

C - City Savers

该比赛已结束,您无法在比赛模式下递交该题目。您可以点击“在题库中打开”以普通模式查看和递交本题。

C - City Savers

Score : $300$ points

Problem Statement

There are $N+1$ towns. The $i$-th town is being attacked by $A_i$ monsters.

We have $N$ heroes. The $i$-th hero can defeat monsters attacking the $i$-th or $(i+1)$-th town, for a total of at most $B_i$ monsters.

What is the maximum total number of monsters the heroes can cooperate to defeat?

Constraints

  • All values in input are integers.
  • $1 \leq N \leq 10^5$
  • $1 \leq A_i \leq 10^9$
  • $1 \leq B_i \leq 10^9$

Input

Input is given from Standard Input in the following format:

NN

A1A_1 A2A_2 ...... AN+1A_{N+1}

B1B_1 B2B_2 ...... BNB_N

Output

Print the maximum total number of monsters the heroes can defeat.


2
3 5 2
4 5
9

If the heroes choose the monsters to defeat as follows, they can defeat nine monsters in total, which is the maximum result.

  • The first hero defeats two monsters attacking the first town and two monsters attacking the second town.
  • The second hero defeats three monsters attacking the second town and two monsters attacking the third town.

3
5 6 3 8
5 100 8
22

2
100 1 1
1 100
3

2024暑假入门组刷题营第三期(十)

未参加
状态
已结束
规则
IOI
题目
8
开始于
2024-7-18 13:00
结束于
2024-7-18 15:00
持续时间
2 小时
主持人
参赛人数
8