NYOJ-791 Color the fence

来源:互联网 发布:黑马餐饮软件 编辑:程序博客网 时间:2024/05/02 04:35

Color the fence

时间限制:1000 ms  |  内存限制:65535 KB
难度:2
描述

Tom has fallen in love with Mary. Now Tom wants to show his love and write a number on the fence opposite to 

Mary’s house. Tom thinks that the larger the numbers is, the more chance to win Mary’s heart he has.

Unfortunately, Tom could only get V liters paint. He did the math and concluded that digit i requires ai liters paint. 

Besides,Tom heard that Mary doesn’t like zero.That’s why Tom won’t use them in his number.

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

输入
There are multiple test cases.
Each case the first line contains a nonnegative integer V(0≤V≤10^6).
The second line contains nine positive integers a1,a2,……,a9(1≤ai≤10^5).
输出
Printf the maximum number Tom can write on the fence. If he has too little paint for any digit, print -1.
样例输入
5
5 4 3 2 1 2 3 4 5
2
9 11 1 12 5 8 9 10 6
样例输出
55555
33



01.#include<iostream>
02.using namespace std;
03.int main()
04.{
05.int v,a[9],min;
06.while(cin>>v)
07.{  
08.min=1000000;
09.for(int i=0;i<9;i++)
10.{
11.cin>>a[i];
12.if(a[i]<=min)           
13.min=a[i];          
14.}      
15.if(min>v)
16.{
17.cout<<-1<<endl;
18.}
19.int k=v/min;
20.for(int i=k-1;i>=0;i--)
21.{
22.for(int j=8;j>=0;j--)
23.{
24.if(v>=a[j]&&(v-a[j])/min>=i)
25.{
26.cout<<j+1;
27.v-=a[j];
28.break;
29.}                     
30.}                  
31.}
32.cout<<endl;      
33.}
34.return 0;
35.}

0 0
原创粉丝点击