結果

問題 No.974 最後の日までに
ユーザー mkawa2mkawa2
提出日時 2020-01-19 02:27:43
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 2,995 bytes
コンパイル時間 112 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 138,456 KB
最終ジャッジ日時 2024-06-28 17:16:59
合計ジャッジ時間 64,606 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 1,665 ms
137,404 KB
testcase_02 AC 1,664 ms
137,296 KB
testcase_03 AC 1,698 ms
136,744 KB
testcase_04 AC 1,664 ms
136,504 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 1,662 ms
138,280 KB
testcase_10 AC 1,649 ms
138,316 KB
testcase_11 AC 1,721 ms
137,792 KB
testcase_12 AC 1,722 ms
137,672 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 1,723 ms
137,580 KB
testcase_16 AC 1,752 ms
137,668 KB
testcase_17 AC 1,812 ms
137,804 KB
testcase_18 AC 1,820 ms
137,732 KB
testcase_19 AC 1,817 ms
137,168 KB
testcase_20 AC 1,854 ms
137,680 KB
testcase_21 AC 1,823 ms
137,812 KB
testcase_22 AC 1,827 ms
137,036 KB
testcase_23 AC 1,795 ms
137,040 KB
testcase_24 AC 1,810 ms
137,168 KB
testcase_25 AC 31 ms
11,136 KB
testcase_26 AC 32 ms
10,880 KB
testcase_27 AC 1,236 ms
82,596 KB
testcase_28 AC 1,693 ms
112,484 KB
testcase_29 AC 30 ms
10,752 KB
testcase_30 AC 1,702 ms
117,644 KB
testcase_31 AC 30 ms
10,752 KB
testcase_32 AC 29 ms
10,880 KB
testcase_33 AC 1,046 ms
88,640 KB
testcase_34 AC 1,804 ms
137,228 KB
testcase_35 AC 29 ms
10,880 KB
testcase_36 AC 29 ms
11,008 KB
testcase_37 WA -
testcase_38 AC 30 ms
10,752 KB
testcase_39 AC 30 ms
10,752 KB
testcase_40 AC 931 ms
65,612 KB
testcase_41 AC 1,234 ms
89,584 KB
testcase_42 AC 1,827 ms
136,992 KB
testcase_43 AC 1,811 ms
137,108 KB
testcase_44 AC 1,390 ms
100,088 KB
testcase_45 AC 1,086 ms
88,772 KB
testcase_46 AC 31 ms
10,752 KB
testcase_47 AC 31 ms
10,752 KB
testcase_48 AC 31 ms
10,752 KB
testcase_49 AC 31 ms
10,880 KB
testcase_50 AC 31 ms
10,880 KB
testcase_51 AC 30 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

sys.setrecursionlimit(10 ** 6)
int1 = lambda x: int(x) - 1
p2D = lambda x: print(*x, sep="\n")
def II(): return int(sys.stdin.readline())
def MI(): return map(int, sys.stdin.readline().split())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]

def main():
    def dfsl(i=0, like=0, money=0, last=False):
        if i >= n // 2:
            if last:money-=aa[n//2]
            left.append((money, like, last))
            return
        # バイトの場合
        dfsl(i + 1, like, money + aa[i], last)
        # 学校の場合
        dfsl(i + 2, like + bb[i + 1], money - cc[i + 1], i == n // 2 - 1)

    def dfsr(i=-1, like=0, money=0, first=False):
        if i == -1: i = n // 2
        if i >= n:
            right.append((money, like, first))
            return
        # バイトの場合
        dfsr(i + 1, like, money + aa[i], first)
        # 学校の場合
        if i + 1 < n: dfsr(i + 2, like + bb[i + 1], money - cc[i + 1], i == n // 2)

    n = II()
    aa = []
    bb = []
    cc = []
    for _ in range(n):
        a, b, c = MI()
        aa += [a]
        bb += [b]
        cc += [c]
    # 学校に行く日を固定すると、次の日はデート、その他の日はバイトと一意に決まる
    # 期間を半分に分け、前後半ともに全列挙する
    left = []
    dfsl()
    right = []
    dfsr()
    # 他の結果と比べて、残金も少ないし好感度も低いものは不要なので削除する
    # 残金を降順にしたとき好感度は昇順になるはず
    # なっていない結果を削除
    left.sort(key=lambda x: (x[2], -x[0], -x[1]))
    # print(left)
    plike = -1
    plast = False
    nl = []
    for i, (money, like, last) in enumerate(left):
        if plast != last: plike = -1
        if like <= plike: continue
        nl.append((money, like, last))
        plike, plast = like, last
    # print(nl)

    right.sort(key=lambda x: (x[2], -x[0], -x[1]))
    # print(right)
    plike = -1
    pfirst = False
    nr = []
    for i, (money, like, first) in enumerate(right):
        if pfirst != first: plike = -1
        if like <= plike: continue
        nr.append((money, like, first))
        plike, pfirst = like, first
    # print(nr)
    # left,rightともに残金でソートし直してしゃくとり法
    # leftは左から、rightは右から、残金の合計が負にならないように動かす
    # ただし、last,firstがともにTrueのときは選べない
    nl.sort()
    nr.sort()
    #print(nl)
    #print(nr)
    j = len(nr) - 1
    ans = 0
    for i in range(len(nl)):
        lm, ll, last = nl[i]
        while 1:
            rm, rl, first = nr[j]
            if (not (last and first)) and lm + rm >= 0 and ll + rl > ans:
                ans = ll + rl
                #print(ans,ll,rl,lm,rm)
            if j == 0 or lm + nr[j - 1][0] < 0: break
            j -= 1
    print(ans)

main()
0