Description
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.
Sample Input
5 0 1 0 1 0
3
5 1 1 0 0 1
4
2 0 0
0
Hint
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.
#include<cstdio>
#include<iostream>
using namespace std;
int main(){
int n,i,k,a[1010];
while(cin>>n){
k=0;
for(i=1;i<=n;i++){
cin>>a[i];
}
for(i=1;i<n;i++){
if(a[i]==1&&a[i+1]==1)
k++;
else if(a[i]==1&&a[i+1]==0)
k+=2;
}
if(!a[n]&&k>0)
k--;
else if(a[n])
k++;
cout<<k<<endl;
}
return 0;
}
本文探讨了Alexey如何通过最小的操作数来阅读邮箱中所有未读邮件,然后观看足球比赛的问题。通过一系列点击操作,Alexey需要在邮件列表与邮件内容之间切换,最终完成阅读所有未读邮件的任务。
1639

被折叠的 条评论
为什么被折叠?



