C. Party Lemonade

來源:互聯網
上載者:User

標籤:pac   枚舉   return   pen   題目   二進位   bit   ref   種類型   

連結

[http://codeforces.com/group/1EzrFFyOc0/contest/913/problem/C]

分析

看代碼,巧妙的貪心

代碼
#include<bits/stdc++.h>using namespace std;#define ll long longint main(){    ios::sync_with_stdio(false);    cin.tie(0);    cout.tie(0);    ll n,l;    ll c[40];    int i;    //freopen("in.txt","r",stdin);    while(cin>>n>>l){        ll ans=0;        for(i=0;i<n;i++)            cin>>c[i];                for(i=1;i<n;i++)            if(2*c[i-1]<c[i]) c[i]=2*c[i-1];//選擇性價比最高     //下面很關鍵,你可以把一個十進位數換成位元,因為題目剛好type i has volume 2^i-1 liters       for(i=0;i<n;i++){        if(ans>c[i]) ans=c[i];//如果已經買的價格超過了現在的價格而現在的容量一定大於已經買的          //你多買了而且價格還底何樂而不為呢         if(l&1) ans+=c[i];//當二進位位為1的時候就買         l/=2;//相當於十進位化為二進位的過程       }      l*=2;//因為上面只枚舉到第n種類型,可能沒買完要買的而且我們每個for都除2所以要乘以2       ans+=l*c[n-1];//選最後的類型,因為剩下的是l*2^n-1升       cout<<ans<<endl;    }    return 0;}

C. Party Lemonade

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.