Codeforces Round #202 (Div. 2) B. Color the Fence

B. Color the Fence

time limit per test
2 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output

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, ..., a(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.

 

原题链接 http://codeforces.com/contest/349/problem/B

 

 

 

(1) 题目大意 

给你一个maxmoney,代表能用的最大钱数,之后给你1-9每位需要花的钱数,问能组成最大的数是多少

(2)思路

我的思路就是先贪心位数最大

然后从首位开始从新贪心,用剩余的钱数去尽可能买数字大的,

贴代码了(通俗易懂

 1 #include <algorithm>
 2 #include <stack>
 3 #include <istream>
 4 #include <stdio.h>
 5 #include <map>
 6 #include <math.h>
 7 #include <vector>
 8 #include <iostream>
 9 #include <queue>
10 #include <string.h>
11 #include <set>
12 #include <cstdio>
13 #define FR(i,n) for(int i=0;i<n;i++)
14 #define MAX 2005
15 #define mkp pair <int,int>
16 using namespace std;
17 const int maxn = 1e6+5;
18 typedef long long ll;
19 const int  inf = 0x3fffff;
20 void read(int  &x) {
21     char ch; bool flag = 0;
22     for (ch = getchar(); !isdigit(ch) && ((flag |= (ch == '-')) || 1); ch = getchar());
23     for (x = 0; isdigit(ch); x = (x << 1) + (x << 3) + ch - 48, ch = getchar());
24     x *= 1 - 2 * flag;
25 }
26 
27 int n,arr[1005];
28 int ans[maxn],top = 0;
29 int main() {
30     read(n);
31     int minn = 10000000;
32     int id = 0;
33     for(int i=1;i<=9;i++){
34         read(arr[i]);
35         if(minn>arr[i]){
36             minn = arr[i];
37             id = i;
38         }
39     }
40     //cout<<1<<endl;
41     if(n<minn){return 0*printf("-1\n");}
42     top = n/minn;
43     for(int i=0;i<top;i++)ans[i]=id;
44     int last = n-top*minn;
45     for(int i=0;i<top;i++)
46     {
47         last  += arr[ans[i]];
48         bool an= 1;
49         for(int j=9;j>=1;j--){
50             if(last>=arr[j]){
51                 ans[i]=j;
52                 an = 0;
53                 last-=arr[j];
54                 break;
55             }
56         }
57         if(an)break;
58        // last-=arr[ans[i]];
59     }
60     for(int i=0;i<top;i++){
61         printf("%d",ans[i]);
62     }
63     return 0;
64 }

 

转载于:https://www.cnblogs.com/DreamKill/p/9388169.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值