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

來源:互聯網
上載者:User

大坑題啊大坑題


以為過了

5

2 2 2 2 2 2 2 2 3

就對了的。


結果。。。

19

9 9 9 9 9 9 5 6 8

輸出 987


哈哈哈


跟上面那種是一樣的原理。先刷小的。刷不夠了換一個小的加剩餘的  看能不能湊一個大的

但是湊了一個大的以後呢。可能還有餘數。那就還要去湊。


#include <iostream>#include <cstdio>#include <algorithm>#include <cstring>#include <cmath>#include <vector>#include <string>#include <set>#define lson num<<1,s,mid#define rson num<<1|1,mid+1,eusing namespace std;int a[15];int top;int ss[1000000];int main(){    top=0;    int n;    scanf("%d",&n);    int Min=99999999;    int k;    for(int i=1;i<=9;i++)//找最小    {        scanf("%d",&a[i]);        if(Min>=a[i])        {            Min=a[i];            k=i;           }    }    if(Min>n)    {        printf("-1\n");        return 0;    }    bool found=true;    int tmp=n%Min;    while(found)   //湊啊湊   湊不了了就不湊    {        int sb=-1;        int i;        for(i=k+1;i<=9;i++)        {            if(tmp+Min>=a[i])            {                sb=i;            }        }        if(sb==-1)found=false;        else        {            tmp-=(a[sb]-Min);            ss[top++]=sb;        }    }    int ttmp=n/Min;    if(top!=0)    ttmp-=top;    sort(ss,ss+top);    //printf("top  =%d\n",top);    for(int i=top-1;i>=0;i--)    printf("%d",ss[i]);    for(int i=1;i<=ttmp;i++)    {        printf("%d",k);    }    puts("");    return 0;}


相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.