CF#202DIV2:B. Color the Fence

来源:互联网 发布:软件功能模块图 编辑:程序博客网 时间:2024/05/17 05:08

http://codeforces.com/contest/349/problem/B

Igor has fallen in love with Tanya. Now Igor wants to show his feelings and write a number on the fence opposite to Tanya's house. Igor thinks that the larger the number is, the more chance to win Tanya's heart he has.

Unfortunately, Igor could only get v liters of paint. He did the math and concluded that digitd requiresad liters of paint. Besides, Igor heard that Tanya doesn't like zeroes. That's why Igor won't use them in his number.

Help Igor find the maximum number he can write on the fence.

Input

The first line contains a positive integer v(0 ≤ v ≤ 106). The second line contains nine positive integersa1, a2, ..., a9(1 ≤ ai ≤ 105).

Output

Print the maximum number Igor can write on the fence. If he has too little paint for any digit (so, he cannot write anything), print -1.

Sample test(s)
Input
55 4 3 2 1 2 3 4 5
Output
55555
Input
29 11 1 12 5 8 9 10 6
Output
33
Input
01 1 1 1 1 1 1 1 1
Output
-1


题意:给出颜料总数,还有1~9每个数字需要的颜料数,问将能刷出的最大数字是多少

思路:贪心即可

 

#include <stdio.h>#include <string.h>#include <algorithm>using namespace std;int main(){    int a[10],sum,minn,k,i,j,cnt,r;    while(~scanf("%d",&sum))    {        minn = 1000000005;        k = 0;        for(i = 1; i<=9; i++)        {            scanf("%d",&a[i]);            if(a[i]<minn)//找出花费最小的颜料数            {                minn = a[i];                k = i;            }            else if(a[i] == minn && k<i)//花费与最少的相等,自然取数字大的                k = i;        }        if(sum<minn)//最少的花费都大于总颜料,自然不行        {            printf("-1\n");            continue;        }        cnt = sum/minn;//最小花费能得到的数字长度        r = sum%minn;        if(!r)//若总颜料能整出最小花费,全部输出这个数一定是最大        {            for(i = 1; i<=cnt; i++)                printf("%d",k);            printf("\n");            continue;        }        while(sum>0)//总颜料还没用完,找出与最小花费长度相等的最大数        {            int x = 0;            for(i = 1; i<=9; i++)            {                int s = sum-a[i];//减去这个数字的花费                if(s<0)//这个数字会使颜料用完,换下一个颜料                    continue;                if(s/minn == cnt-1 && x<i)//减去该数字的花费之后,剩下的除以最小的长度是原来长度-1,必定是最符合的,在所有最符合的状况中找到最大的                    x = i;            }            if(x)            {                sum-=a[x];//放了一个数字,总花费减少                cnt--;//长度减一                printf("%d",x);//输出这个数字            }        }        printf("\n");    }    return 0;}


 

原创粉丝点击