delete pics to save space

This commit is contained in:
2023-08-03 09:22:52 +08:00
commit de60cd6ed4
1334 changed files with 66221 additions and 0 deletions

37
2.12563.cpp Normal file
View File

@ -0,0 +1,37 @@
#include<cstdio>
#include<cstring>
#include<algorithm>
using namespace std;
int n,t,ti,i,j,res;
int dp1[180*50+678+5];
int main()
{
#ifdef local
freopen("pro.in","r",stdin);
#endif
int KASE,kase=0;
scanf("%d",&KASE);
while(KASE-->0)
{
memset(dp1,-1,sizeof(dp1));
dp1[0]=0;
res=0;
scanf("%d%d",&n,&t);
for(i=0;i<n;i++)
{
scanf("%d",&ti);
for(j=t-1;j>=ti;j--)
{
dp1[j]=max(dp1[j],dp1[j-ti]+1);
res=max(res,dp1[j]);
}
}
for(i=t-1;i>=0;i--)
if(dp1[i]==res)
{
printf("Case %d: %d %d\n",++kase,res+1,i+678);
break;
}
}
return 0;
}