首页 > 代码库 > Paper Work Cf250A

Paper Work Cf250A

Paper Work
Time Limit:2000MS     Memory Limit:262144KB     64bit IO Format:%I64d & %I64u
Submit Status Practice CodeForces 250A

Description

Polycarpus has been working in the analytic department of the "F.R.A.U.D." company for as much as n days. Right now his task is to make a series of reports about the company‘s performance for the last n days. We know that the main information in a day report is value ai, the company‘s profit on the i-th day. If ai is negative, then the company suffered losses on the i-th day.

Polycarpus should sort the daily reports into folders. Each folder should include data on the company‘s performance for several consecutive days. Of course, the information on each of the n days should be exactly in one folder. Thus, Polycarpus puts information on the first few days in the first folder. The information on the several following days goes to the second folder, and so on.

It is known that the boss reads one daily report folder per day. If one folder has three or more reports for the days in which the company suffered losses (ai?<?0), he loses his temper and his wrath is terrible.

Therefore, Polycarpus wants to prepare the folders so that none of them contains information on three or more days with the loss, and the number of folders is minimal.

Write a program that, given sequence ai, will print the minimum number of folders.

Input

The first line contains integer n (1?≤?n?≤?100), n is the number of days. The second line contains a sequence of integers a1,?a2,?...,?an(|ai|?≤?100), where ai means the company profit on the i-th day. It is possible that the company has no days with the negative ai.

Output

Print an integer k — the required minimum number of folders. In the second line print a sequence of integers b1b2, ..., bk, where bj is the number of day reports in the j-th folder.

If there are multiple ways to sort the reports into k days, print any of them.

Sample Input

Input
11
1 2 3 -4 -5 -6 5 -5 -6 -7 6
Output
3
5 3 3 
Input
5
0 -1 100 -1 0
Output
1
5 

题意:给出n个数,分成m堆,每堆最多只能有两个负数,求最小的堆数,并输出每堆的个数。

简单的贪心,但写起来还是把我会搞死。。。。。

代码:

#include <iostream>
#include <cstdio>
#include <cstring>
#include <algorithm>
#include <cmath>
#include <string>
using namespace std;

int a[110],b[110];

int main()
{
    int n,ans;
    while (~scanf("%d",&n))
    {
        ans=0;
        int num=0;
        for (int i=0;i<n;i++)
            scanf("%d",&a[i]);
        for (int i=0;i<n;i++)
        {
            if (a[i]<0&&num<3)
                num++;
            if (num==3)
            {
                b[ans]=i;
                ans++;
                num=1;
            }
        }
//        printf("%d %d\n",ans,num);
        b[ans]=n;
        ans++;
        if (ans==0)
        {
            ans=1;
            b[0]=n;
        }
        printf("%d\n",ans);
        printf("%d",b[0]);
        if (ans>1){
        for (int i=1;i<ans;i++)
            printf(" %d",b[i]-b[i-1]);}
        printf("\n");
    }
    return 0;
}
/*
7
-1 -2 3 4 5 6 -7
8
-1 -1 -1 -1 -1 -1 -1 -1
*/


Paper Work Cf250A