zoukankan      html  css  js  c++  java
  • 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
    ");}
    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 }
    我身后空无一人,我怎敢倒下
  • 相关阅读:
    作一份高水准的简历
    使用该JavaBean可以将数据在JSP页面中以表格的形式显示出来,并具有动态排序 动态生成查询 自动分页功能
    javah命令 C Header and Stub File Generator
    Java内部类(Inner Class)
    集合(Collection)与迭代器(Iterator)
    Mysql数据库从本地导出 服务器上导入时报 ERROR 2005 HY000 Unknown MySQL ser
    Cassandra操作入门
    表示不同文件类型的魔术数字
    JAVA中實現鏈表--LinkedList的使用
    在oracle数据库中如何插入CLOB值
  • 原文地址:https://www.cnblogs.com/DreamKill/p/9388169.html
Copyright © 2011-2022 走看看