Problem
你要完成一个𝑚页的作业,手里有𝑛杯咖啡,每一杯咖啡有一个咖啡因强度值𝑎𝑖,能支撑你写𝑎𝑖页作业。每一天你会选择一些咖啡喝掉,对于当天喝的第i杯咖啡,咖啡因的强度会减弱𝑖−1单位,减到0就不再减小。问你最少经过几天能完成作业。
Solution
贪心,二分天数,然后最大的开始往每天填。
Code
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72
| #include<stdio.h> #include<set> #include<iostream> #include<stack> #include<cstring> #include<vector> #include<algorithm>
typedef long long ll; typedef long double ld; typedef double db; #define io_opt ios::sync_with_stdio(false);cin.tie(0);cout.tie(0) using namespace std;
inline int rd() { int x = 0, f = 1; char ch; while (ch < '0' || ch > '9') { if (ch == '-')f = -1; ch = getchar(); } while (ch >= '0' && ch <= '9') { x = x * 10 + ch - '0'; ch = getchar(); } return f * x; } int n,m,sum; int a[120]; int ans; int cnt[120]; int sm; bool check(int x){ memset(cnt,0,sizeof(cnt)); sm=0; for(int i=1;i<=n;i++){ int num=i%x; sm+=max(a[i]-cnt[num],0); cnt[num]++; } return sm>=m; } int cmp(int x,int y){ return x>y; } int main() { n=rd();m=rd(); for(int i=1;i<=n;i++){ a[i]=rd(); sum+=a[i]; } sort(a+1,a+1+n,cmp); if(sum<m){ printf("-1\n"); return 0; } int l=1,r=n,mid; while(l<=r){ mid=(l+r)/2; if(check(mid)){ r=mid-1; ans=mid; } else{ l=mid+1; } } printf("%d\n",ans); return 0; }
|