码迷,mamicode.com
首页 > 其他好文 > 详细

349B - Color the Fence

时间:2017-03-18 17:32:41      阅读:171      评论:0      收藏:0      [点我收藏+]

标签:最大的   efault   contain   tabs   art   tom   ace   paint   main   

Color the Fence
Time Limit:2000MS     Memory Limit:262144KB     64bit IO Format:%I64d & %I64u
Submit Status

Description

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 digit d requires ad 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 integers a1, 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 Input

Input
5
5 4 3 2 1 2 3 4 5
Output
55555
Input
2
9 11 1 12 5 8 9 10 6
Output
33
Input
0
1 1 1 1 1 1 1 1 1
Output
-1

 

 
/*
题意:给你v升染料,有1-9个数字,写每个数字都耗费不同的燃料,问你用这些燃料最多能写出来的数字是多少

#感悟:爆炸,尽然没想起来这么贪,最长的长度肯定cur=v/minv然后,枚举cur位,都尽可能的取一个最大的数

*/

#include <bits/stdc++.h>
#define INF 0x3f3f3f3f
using namespace std;
int a[11];
vector<int> v;
int n;
int minv=INF;
int mini;
int cur;
int main(){
    // freopen("in.txt","r",stdin);
    v.clear();
    scanf("%d",&n);
    for(int i=0;i<9;i++){
        scanf("%d",&a[i]);
        if(a[i]<=minv){
            minv=a[i];
            mini=i;
        }
    }
    cur=n/minv;
    if(cur==0){
        puts("-1");
        return 0;
    }
    int res=0;
    for(int i=0;i<cur;i++){//查找每一位
        for(int j=8;j>=0;j--){
            //每一位都找最大的
            if(n<=minv){
                v.push_back(mini+1);
                break;
            }
            if(a[j]>n) continue;
            if( (n-a[j])/minv+v.size()+1==cur){
                res+=a[j];
                v.push_back(j+1);
                n-=a[j];
                break;
            }
        }
    }
    for(int i=0;i<v.size();i++){
        printf("%d",v[i]);
    }
    printf("\n");
    return 0;
}

 

349B - Color the Fence

标签:最大的   efault   contain   tabs   art   tom   ace   paint   main   

原文地址:http://www.cnblogs.com/wuwangchuxin0924/p/6574817.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!