QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#354645#8281. Pangu and Stonesmc020207#WA 3ms8168kbC++171.6kb2024-03-15 20:07:382024-03-15 20:07:39

Judging History

你现在查看的是最新测评结果

  • [2024-03-15 20:07:39]
  • 评测
  • 测评结果:WA
  • 用时:3ms
  • 内存:8168kb
  • [2024-03-15 20:07:38]
  • 提交

answer

#include<bits/stdc++.h>
using namespace std;
#define For(i,a,b) for(int i=(a);i<=(b);i++)
#define Rof(i,a,b) for(int i=(a);i>=(b);i--)
#define wln putchar('\n')
template<class T1,class T2> void chkmin(T1 &x,T2 y){if(y<x)x=y;}
template<class T1,class T2> void chkmax(T1 &x,T2 y){if(y>x)x=y;}
const int N=105,INF=1000000007;
int n,l,r,a[N],s[N];
int f[N][N][N],g[N];
int main()
{
    scanf("%d%d%d",&n,&l,&r);
    For(i,1,n)scanf("%d",a+i);
    sort(a+1,a+n+1,[](int x,int y){return x>y;});
    For(i,1,n)s[i]=s[i-1]+a[i];
    fill(g+1,g+n+1,INF);
    For(i,l,r)
        For(j,i,n)
            chkmin(g[j],g[j-i]+1);
    // printf("g:");
    // For(i,1,n)printf("%d ",g[i]);
    // wln;
    For(i,0,n-1)
        For(j,1,n)
            fill(f[i][j]+1,f[i][j]+n+1,INF);
    f[0][1][1]=0;
    For(i,0,n-1)
        For(j,1,n)
            For(k,1,j)
                if(f[i][j][k]<INF)
                    For(ii,1,n)
                        if(g[ii]<=k&&j-g[ii]+ii<=n)
                        {
                            // printf("i=%d,j=%d,k=%d,ii=%d,g=%d,x=%d,y=%d\n",i,j,k,ii,g[ii],s[j]-s[j-g[ii]],s[ii]-s[j-g[ii]]);
                            chkmin(f[i+1][j-g[ii]+ii][ii],f[i][j][k]-i*(s[j]-s[j-g[ii]])+(i+1)*(s[j-g[ii]+ii]-s[j-g[ii]]));
                        }
    // For(i,0,n-1)
    //     For(j,1,n)
    //         For(k,1,j)
    //             if(f[i][j][k]<INF)printf("f[%d][%d][%d]=%d\n",i,j,k,f[i][j][k]);
    int ans=INF;
    For(i,0,n-1)
        For(k,1,n)
            chkmin(ans,f[i][n][k]);
    if(ans<INF)printf("%d\n",ans);
    else printf("0\n");
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 100
Accepted
time: 0ms
memory: 3908kb

input:

3 2 2
1 2 3

output:

9

result:

ok 1 number(s): "9"

Test #2:

score: 0
Accepted
time: 1ms
memory: 3848kb

input:

3 2 3
1 2 3

output:

6

result:

ok 1 number(s): "6"

Test #3:

score: 0
Accepted
time: 0ms
memory: 3816kb

input:

4 3 3
1 2 3 4

output:

0

result:

ok 1 number(s): "0"

Test #4:

score: -100
Wrong Answer
time: 3ms
memory: 8168kb

input:

100 4 7
570 608 194 26 243 470 418 119 1000 936 440 302 797 155 676 283 869 60 959 793 158 397 808 656 379 316 485 854 753 280 543 435 756 822 106 561 402 347 99 739 8 682 834 549 812 32 338 765 699 575 575 785 171 504 335 113 284 612 276 518 835 677 865 900 687 48 859 179 343 318 626 812 523 11 400...

output:

116415

result:

wrong answer 1st numbers differ - expected: '120446', found: '116415'