Color the Fence------贪心

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.

Examples
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分别所需的油漆,求能写的最大数字

解题思路

读题好费劲,读了好几遍才懂,分析了一下样例发现都是使用油漆最少的数,很显然找使用油漆最小的数n能得到最大位数max,那得到的这个数就是最大的,直接输出max次n,交了一发之后wa了,又想了一下发现有特殊情况没考虑到,就是油漆不能整除所找的最小数时,也就是说油漆还有剩的,这时候的高位上的数有可能可以大于n;那就在n~9之间寻找符合的数。
代码实现

#include<iostream>
using namespace std;
int main()
{
	int v;
	int a[10];
	int min = 1000000;
	int t;
	cin >> v;
	for (int i = 1; i <= 9; i++)//最小数值
	{
		cin >> a[i];
		if (a[i] <= min)
		{
			min = a[i];
			t=i;
		}
	}
	if (v < min)//最小值大于v,无解
	{
		cout << "-1" << endl;
		return 0;
	}
	int max, k;
	max = v / min;  //最大位数
	k = v % min;//余数
	for (int i; k > 0 && max;) //使高位尽量大
	{   
		for (i = 9; i > t&& max; i--) 
		{
			if (k >= (a[i] - a[t])) 
			{
				cout<< i;
				max = max - 1;  
				k -= (a[i] - a[t]);
				break;
			}
		}
		if (i == t) break;
	}
	for (int i = 0; i < max; i++) 
		cout << t;
	return 0;
}
  • 1
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值