結果

問題 No.2309 [Cherry 5th Tune D] 夏の先取り
ユーザー navel_tosnavel_tos
提出日時 2023-05-19 23:54:07
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 6,308 bytes
コンパイル時間 488 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 78,844 KB
最終ジャッジ日時 2024-05-10 07:37:19
合計ジャッジ時間 15,218 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 108 ms
75,648 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 306 ms
77,788 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 326 ms
77,984 KB
testcase_08 AC 283 ms
77,736 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 305 ms
77,828 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 308 ms
77,796 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 404 ms
78,368 KB
testcase_32 AC 420 ms
77,852 KB
testcase_33 AC 395 ms
78,124 KB
testcase_34 AC 412 ms
78,112 KB
testcase_35 AC 404 ms
77,612 KB
testcase_36 WA -
testcase_37 AC 91 ms
75,520 KB
testcase_38 WA -
testcase_39 AC 137 ms
76,672 KB
testcase_40 WA -
testcase_41 WA -
testcase_42 AC 299 ms
76,396 KB
testcase_43 AC 262 ms
77,204 KB
testcase_44 AC 241 ms
77,204 KB
testcase_45 AC 230 ms
77,624 KB
testcase_46 AC 238 ms
77,220 KB
testcase_47 AC 113 ms
75,776 KB
testcase_48 AC 78 ms
71,808 KB
testcase_49 AC 134 ms
75,520 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#yukicoder389E

'''
■考察欄
うーん、勝てない。むずかしい。

いちご・メロンの組を固定して、最大売り上げをO(1)で計算、をくり返す感じかな。
BH味の組のうち、高く売れるほうをありったけ売ってから残りをさばく。

と思ったらWがあるのかよ。だる。
いうてもWが活きる場面って「2*(X+Y+Z)<W」だけだよね?
それ以外はWが1食売れるかどうかだけを考えればよいはず。ま、計算量の暴力でいけるだろう。

いけないが。
最終手段やるか。
'''
f=lambda:list(map(int,input().split()))

for _ in range(int(input())):
    A,B,C=f(); X,Y,Z,W=f(); ans=0
    for A,B,C,X,Y,Z in [(A,B,C,X,Y,Z),(B,C,A,Y,Z,X),(C,A,B,Z,X,Y)]:
        start=0; nA,nB,nC,nX,nY,nZ,nW=A,B,C,X,Y,Z,W
        #Wを0食または1食だけ売る場合にわけて考える
        for x in range(min(A,B)+1):  #X円での販売量をxとする
            cnt=X*x; a,b,c=A-x,B-x,C
            #BH味の争奪戦。YとZで優勢なほうから売る。
            if Y>Z:  #メロンを貪欲に売る
                y=min(b,c); cnt+=Y*y; b-=y; c-=y
                #まだBH味が残っていたら、イチゴ味とぶつける
                if c>0: z=min(a,c); cnt+=Z*z; a-=z; c-=z
                if a>0 and b>0: cnt+=X*min(a,b)
            else:  #イチゴを貪欲に売る
                z=min(a,c); cnt+=Z*z; a-=z; c-=z
                if c>0: y=min(b,c); cnt+=Y*y; b-=y; c-=y
                if a>0 and b>0: cnt+=X*min(a,b)
            ans=max(ans,start+cnt)
        
        #Wを1食だけかならず売るとして、場合分け
        if min(A,B,C)>0:
            A-=1; B-=1; C-=1; start+=W; ans=max(ans,start)
            for x in range(min(A,B)+1):  #X円での販売量をxとする。ここからコピペ。
                cnt=X*x; a,b,c=A-x,B-x,C
                if Y>Z:  #メロンを貪欲に売る
                    y=min(b,c); cnt+=Y*y; b-=y; c-=y
                    #まだBH味が残っていたら、イチゴ味とぶつける
                    if c>0: z=min(a,c); cnt+=Z*z; a-=z; c-=z
                    if a>0 and b>0: cnt+=X*min(a,b)
                else:  #イチゴを貪欲に売る
                    z=min(a,c); cnt+=Z*z; a-=z; c-=z
                    if c>0: y=min(b,c); cnt+=Y*y; b-=y; c-=y
                    if a>0 and b>0: cnt+=X*min(a,b)
                ans=max(ans,start+cnt)

        A,B,C,X,Y,Z,W = nA,nB,nC,nX,nY,nZ,nW; start=0
        #Wを大量に売る必要があるなら、貪欲に売る。ただ1食分だけは残しておく。
        if 2*(X+Y+Z)<W:
            sold=min(A,B,C)
            if sold>1: A-=sold; B-=sold; C-=sold; start+=W*sold; ans=max(ans,start)

        #Wを1食も売らないものとして、場合分け
        for x in range(min(A,B)+1):  #X円での販売量をxとする
            cnt=X*x; a,b,c=A-x,B-x,C
            #BH味の争奪戦。YとZで優勢なほうから売る。
            if Y>Z:  #メロンを貪欲に売る
                y=min(b,c); cnt+=Y*y; b-=y; c-=y
                #まだBH味が残っていたら、イチゴ味とぶつける
                if c>0: z=min(a,c); cnt+=Z*z; a-=z; c-=z
                if a>0 and b>0: cnt+=X*min(a,b)
            else:  #イチゴを貪欲に売る
                z=min(a,c); cnt+=Z*z; a-=z; c-=z
                if c>0: y=min(b,c); cnt+=Y*y; b-=y; c-=y
                if a>0 and b>0: cnt+=X*min(a,b)
            ans=max(ans,start+cnt)
        
        #Wを1食だけかならず売るとして、場合分け
        if min(A,B,C)>0:
            A-=1; B-=1; C-=1; start+=W; ans=max(ans,start)
            for x in range(min(A,B)+1):  #X円での販売量をxとする。ここからコピペ。
                cnt=X*x; a,b,c=A-x,B-x,C
                if Y>Z:  #メロンを貪欲に売る
                    y=min(b,c); cnt+=Y*y; b-=y; c-=y
                    #まだBH味が残っていたら、イチゴ味とぶつける
                    if c>0: z=min(a,c); cnt+=Z*z; a-=z; c-=z
                    if a>0 and b>0: cnt+=X*min(a,b)
                else:  #イチゴを貪欲に売る
                    z=min(a,c); cnt+=Z*z; a-=z; c-=z
                    if c>0: y=min(b,c); cnt+=Y*y; b-=y; c-=y
                    if a>0 and b>0: cnt+=X*min(a,b)
                ans=max(ans,start+cnt)

        A,B,C,X,Y,Z,W = nA,nB,nC,nX,nY,nZ,nW; start=0
        #Wを大量に売る必要があるなら、貪欲に売る。ただ1食分だけは残しておく。
        sold=min(A,B,C)//2
        if sold>1: A-=sold*2; B-=sold*2; C-=sold*2; start+=(X+Y+Z)*sold; ans=max(ans,start)

        #Wを1食も売らないものとして、場合分け
        for x in range(min(A,B)+1):  #X円での販売量をxとする
            cnt=X*x; a,b,c=A-x,B-x,C
            #BH味の争奪戦。YとZで優勢なほうから売る。
            if Y>Z:  #メロンを貪欲に売る
                y=min(b,c); cnt+=Y*y; b-=y; c-=y
                #まだBH味が残っていたら、イチゴ味とぶつける
                if c>0: z=min(a,c); cnt+=Z*z; a-=z; c-=z
                if a>0 and b>0: cnt+=X*min(a,b)
            else:  #イチゴを貪欲に売る
                z=min(a,c); cnt+=Z*z; a-=z; c-=z
                if c>0: y=min(b,c); cnt+=Y*y; b-=y; c-=y
                if a>0 and b>0: cnt+=X*min(a,b)
            ans=max(ans,start+cnt)
        
        #Wを1食だけかならず売るとして、場合分け
        if min(A,B,C)>0:
            A-=1; B-=1; C-=1; start+=W; ans=max(ans,start)
            for x in range(min(A,B)+1):  #X円での販売量をxとする。ここからコピペ。
                cnt=X*x; a,b,c=A-x,B-x,C
                if Y>Z:  #メロンを貪欲に売る
                    y=min(b,c); cnt+=Y*y; b-=y; c-=y
                    #まだBH味が残っていたら、イチゴ味とぶつける
                    if c>0: z=min(a,c); cnt+=Z*z; a-=z; c-=z
                    if a>0 and b>0: cnt+=X*min(a,b)
                else:  #イチゴを貪欲に売る
                    z=min(a,c); cnt+=Z*z; a-=z; c-=z
                    if c>0: y=min(b,c); cnt+=Y*y; b-=y; c-=y
                    if a>0 and b>0: cnt+=X*min(a,b)
                ans=max(ans,start+cnt)
    print(ans)
0