第18周周赛(大一)--D - Prizes, Prizes, more Prizes

D - Prizes, Prizes, more Prizes
Crawling in process... Crawling failed Time Limit:2000MS     Memory Limit:262144KB     64bit IO Format:%I64d & %I64u
Submit Status Practice CodeForces 208D

Description

Vasya, like many others, likes to participate in a variety of sweepstakes and lotteries. Now he collects wrappings from a famous chocolate bar "Jupiter". According to the sweepstake rules, each wrapping has an integer written on it — the number of points that the participant adds to his score as he buys the bar. After a participant earns a certain number of points, he can come to the prize distribution center and exchange the points for prizes. When somebody takes a prize, the prize's cost is simply subtracted from the number of his points.

Vasya didn't only bought the bars, he also kept a record of how many points each wrapping cost. Also, he remembers that he always stucks to the greedy strategy — as soon as he could take at least one prize, he went to the prize distribution centre and exchanged the points for prizes. Moreover, if he could choose between multiple prizes, he chose the most expensive one. If after an exchange Vasya had enough points left to get at least one more prize, then he continued to exchange points.

The sweepstake has the following prizes (the prizes are sorted by increasing of their cost):

  • a mug (costs a points),
  • a towel (costs b points),
  • a bag (costs c points),
  • a bicycle (costs d points),
  • a car (costs e points).

Now Vasya wants to recollect what prizes he has received. You know sequence p1, p2, ..., pn, where pi is the number of points Vasya got for the i-th bar. The sequence of points is given in the chronological order. You also know numbers a, b, c, d, e. Your task is to find, how many prizes Vasya received, what prizes they are and how many points he's got left after all operations are completed.

Input

The first line contains a single integer n (1 ≤ n ≤ 50) — the number of chocolate bar wrappings that brought points to Vasya. The second line contains space-separated integers p1, p2, ..., pn (1 ≤ pi ≤ 109). The third line contains 5 integers a, b, c, d, e (1 ≤ a < b < c < d < e ≤ 109) — the prizes' costs.

Output

Print on the first line 5 integers, separated by a space — the number of mugs, towels, bags, bicycles and cars that Vasya has got, respectively. On the second line print a single integer — the number of points Vasya will have left after all operations of exchange are completed.

Please, do not use the %lld specifier to read or write 64-bit integers in С++. It is preferred to use the cin, cout streams or the %I64d specifier.

Sample Input

Input
3
3 10 4
2 4 10 15 20
Output
1 1 1 0 0 
1
Input
4
10 4 39 2
3 5 10 11 12
Output
3 0 1 0 3 
0
这个主要是将意思弄懂 ,这个人每次都会从最贵的开始向后兑换,一直到不能换任何东西为止,同时对每一次的兑换计数
 
     
#include <stdio.h>
#include <string.h>
int main()
{
    __int64 i , n  , a[52] , sum = 0 , b[5] , c[5];
    memset(c,0,5*sizeof(__int64));
    scanf("%I64d", &n);
    for(i = 0 ; i < n ; i++)
        scanf("%I64d", &a[i]);
    for(i = 0 ; i < 5 ; i++)
        scanf("%I64d", &b[i]);
    for(i = 0 ; i < n ; i++)
    {
        sum += a[i] ;
        if(sum >= b[4])
        {
            c[4] += sum / b[4] ;
            sum %= b[4] ;
        }
        if(sum >= b[3])
        {
            c[3] += sum / b[3] ;
            sum %= b[3] ;
        }
        if(sum >= b[2])
        {
            c[2] += sum / b[2] ;
            sum %= b[2] ;
        }
        if(sum >= b[1])
        {
            c[1] += sum / b[1] ;
            sum %= b[1] ;
        }
        if(sum >= b[0])
        {
            c[0] += sum / b[0] ;
            sum %= b[0] ;
        }
    }
    printf("%I64d %I64d %I64d %I64d %I64d\n%I64d\n", c[0] , c[1] , c[2] , c[3] , c[4] , sum);
    return 0;
}

你可能感兴趣的:(第18周周赛(大一)--D - Prizes, Prizes, more Prizes)