博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Codeforces Round #202 (Div. 2) B. Color the Fence
阅读量:5054 次
发布时间:2019-06-12

本文共 2132 字,大约阅读时间需要 7 分钟。

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 
2 #include
3 #include
4 #include
5 #include
6 #include
7 #include
8 #include
9 #include
10 #include
11 #include
12 #include
13 #define FR(i,n) for(int i=0;i
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<
=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

 

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

你可能感兴趣的文章
iOS 数组排序
查看>>
第三节
查看>>
PHP结合MYSQL记录结果分页呈现(比较实用)
查看>>
Mysql支持的数据类型
查看>>
openSuse beginner
查看>>
Codeforces 620E(线段树+dfs序+状态压缩)
查看>>
Windows7中双击py文件运行程序
查看>>
Market entry case
查看>>
bzoj1230 开关灯 线段树
查看>>
LinearLayout
查看>>
学习python:day1
查看>>
css3动画属性
查看>>
第九次团队作业-测试报告与用户使用手册
查看>>
Equal Sides Of An Array
查看>>
CentOS笔记-用户和用户组管理
查看>>
Mongodb 基本命令
查看>>
Qt中QTableView中加入Check列实现
查看>>
“富豪相亲大会”究竟迷失了什么?
查看>>
控制文件的备份与恢复
查看>>
返回代码hdu 2054 A==B?
查看>>