CF586A.Alena's Schedule

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

Alena has successfully passed the entrance exams to the university and is now looking forward to start studying.

One two-hour lesson at the Russian university is traditionally called a pair, it lasts for two academic hours (an academic hour is equal to 45 minutes).

The University works in such a way that every day it holds exactly nn lessons. Depending on the schedule of a particular group of students, on a given day, some pairs may actually contain classes, but some may be empty (such pairs are called breaks).

The official website of the university has already published the schedule for tomorrow for Alena's group. Thus, for each of the nn pairs she knows if there will be a class at that time or not.

Alena's House is far from the university, so if there are breaks, she doesn't always go home. Alena has time to go home only if the break consists of at least two free pairs in a row, otherwise she waits for the next pair at the university.

Of course, Alena does not want to be sleepy during pairs, so she will sleep as long as possible, and will only come to the first pair that is presented in her schedule. Similarly, if there are no more pairs, then Alena immediately goes home.

Alena appreciates the time spent at home, so she always goes home when it is possible, and returns to the university only at the beginning of the next pair. Help Alena determine for how many pairs she will stay at the university. Note that during some pairs Alena may be at the university waiting for the upcoming pair.

输入格式

The first line of the input contains a positive integer nn ( 1<=n<=1001<=n<=100 ) — the number of lessons at the university.

The second line contains nn numbers aia_{i} ( 0<=ai<=10<=a_{i}<=1 ). Number aia_{i} equals 00 , if Alena doesn't have the ii -th pairs, otherwise it is equal to 11 . Numbers a1,a2,...,ana_{1},a_{2},...,a_{n} are separated by spaces.

输出格式

Print a single number — the number of pairs during which Alena stays at the university.

输入输出样例

  • 输入#1

    5
    0 1 0 1 1
    

    输出#1

    4
    
  • 输入#2

    7
    1 0 1 0 0 1 0
    

    输出#2

    4
    
  • 输入#3

    1
    0
    

    输出#3

    0
    

说明/提示

In the first sample Alena stays at the university from the second to the fifth pair, inclusive, during the third pair she will be it the university waiting for the next pair.

In the last sample Alena doesn't have a single pair, so she spends all the time at home.

首页