5511: 收件箱

内存限制:256 MB 时间限制:2 S 标准输入输出
题目类型:传统 评测方式:文本比较 上传者:
提交:4 通过:4

题目描述


Over time, Alexey's mail box got littered with too many letters. Some of them are read, while others are unread.
Alexey's mail program can either show a list of all letters or show the content of a single letter. As soon as the program shows the content of an unread letter, it becomes read letter (if the program shows the content of a read letter nothing happens). In one click he can do any of the following operations:
  • Move from the list of letters to the content of any single letter.
  • Return to the list of letters from single letter viewing mode.
  • In single letter viewing mode, move to the next or to the previous letter in the list. You cannot move from the first letter to the previous one or from the last letter to the next one.
The program cannot delete the letters from the list or rearrange them.
Alexey wants to read all the unread letters and go watch football. Now he is viewing the list of all letters and for each letter he can see if it is read or unread. What minimum number of operations does Alexey need to perform to read all unread letters?
Input
The first line contains a single integer n (1≤n≤1000) − the number of letters in the mailbox.
The second line contains n space-separated integers (zeros and ones) − the state of the letter list. The i-th number equals either 1, if the i-th number is unread, or 0, if the i-th letter is read.
Output
Print a single number − the minimum number of operations needed to make all the letters read.

Alexey 有 n个电子邮件,电子邮件分为已读和未读,已读的电子邮件标为 0,未读的标为 1。现在他有以下三种操作:

  1. 读完邮件后回到邮件列表
  2. 回到列表后选取任意一个未读邮件读
  3. 读完一个邮件之后读这个邮件的下一个或者上一个邮件

问他最少多少次操作能读完所有邮件


Examples
Input
5
0 1 0 1 0
Output
3
Input
5
1 1 0 0 1
Output
4
Input
2
0 0
Output
0
Note
In the first sample Alexey needs three operations to cope with the task: open the second letter, move to the third one, move to the fourth one.
In the second sample the action plan: open the first letter, move to the second letter, return to the list, open the fifth letter.
In the third sample all letters are already read.

输入样例 复制


输出样例 复制