标签:title code break ace get tle std 另一个 codeforce
原题链接
考察:贪心+枚举
WA了n次,正解思维其实和A题一样,我想出了A题却没反应过本题,果然还是菜.
错误思路:
??分两种方式,一个是从时间少做到时间多的,另一个是横向完成一组一组的子任务.
错误原因:
??很明显没有枚举所有方式.
正确思路:
??枚举做0~n组任务后,再从小到大做任务的耗费时间.
#include <iostream>
#include <cstring>
#include <algorithm>
using namespace std;
const int N = 50;
int n,k,m,a[N],sum;
void solve()
{
int ans = 0;
for(int i=0;i<=n;i++)
{
int t = m,res = 0;
if(t<i*sum) continue;
t-=i*sum,res+=(k+1)*i;
for(int j=1;j<=k;j++)
{
int cnt = t/a[j];
res+=min(cnt,n-i);
t-=min(cnt,n-i)*a[j];
if(!cnt) break;
}
ans = max(ans,res);
}
printf("%d\n",ans);
}
int main()
{
scanf("%d%d%d",&n,&k,&m);
for(int i=1;i<=k;i++) scanf("%d",&a[i]),sum+=a[i];
sort(a+1,a+k+1);
solve();
return 0;
}
标签:title code break ace get tle std 另一个 codeforce
原文地址:https://www.cnblogs.com/newblg/p/14869953.html