結果
問題 | No.974 最後の日までに |
ユーザー | mkawa2 |
提出日時 | 2020-01-19 11:58:41 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 3,035 bytes |
コンパイル時間 | 156 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 138,456 KB |
最終ジャッジ日時 | 2024-07-02 21:47:28 |
合計ジャッジ時間 | 16,132 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1,832 ms
138,360 KB |
testcase_01 | AC | 1,737 ms
137,288 KB |
testcase_02 | AC | 1,726 ms
137,404 KB |
testcase_03 | AC | 1,721 ms
136,640 KB |
testcase_04 | AC | 1,715 ms
136,508 KB |
testcase_05 | AC | 1,691 ms
137,408 KB |
testcase_06 | AC | 1,687 ms
137,408 KB |
testcase_07 | AC | 1,686 ms
136,536 KB |
testcase_08 | AC | 1,715 ms
136,516 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | AC | 1,766 ms
137,796 KB |
testcase_12 | AC | 1,744 ms
137,800 KB |
testcase_13 | AC | 1,711 ms
138,448 KB |
testcase_14 | AC | 1,704 ms
138,456 KB |
testcase_15 | AC | 1,769 ms
137,672 KB |
testcase_16 | WA | - |
testcase_17 | AC | 1,856 ms
137,688 KB |
testcase_18 | AC | 1,860 ms
137,876 KB |
testcase_19 | AC | 1,863 ms
136,916 KB |
testcase_20 | AC | 1,838 ms
137,816 KB |
testcase_21 | AC | 1,881 ms
137,752 KB |
testcase_22 | AC | 1,886 ms
137,044 KB |
testcase_23 | AC | 1,920 ms
137,172 KB |
testcase_24 | AC | 1,874 ms
137,176 KB |
testcase_25 | AC | 33 ms
10,880 KB |
testcase_26 | AC | 34 ms
10,880 KB |
testcase_27 | AC | 1,252 ms
82,604 KB |
testcase_28 | AC | 1,731 ms
112,360 KB |
testcase_29 | AC | 31 ms
10,752 KB |
testcase_30 | AC | 1,761 ms
117,652 KB |
testcase_31 | AC | 30 ms
10,752 KB |
testcase_32 | AC | 30 ms
10,880 KB |
testcase_33 | WA | - |
testcase_34 | AC | 1,882 ms
137,364 KB |
testcase_35 | AC | 31 ms
10,752 KB |
testcase_36 | AC | 31 ms
10,880 KB |
testcase_37 | AC | 1,793 ms
116,620 KB |
testcase_38 | AC | 32 ms
10,752 KB |
testcase_39 | AC | 32 ms
10,880 KB |
testcase_40 | AC | 981 ms
65,044 KB |
testcase_41 | AC | 1,297 ms
89,464 KB |
testcase_42 | AC | 1,980 ms
136,876 KB |
testcase_43 | AC | 1,883 ms
136,728 KB |
testcase_44 | AC | 1,397 ms
100,100 KB |
testcase_45 | AC | 1,077 ms
88,904 KB |
testcase_46 | AC | 31 ms
10,880 KB |
testcase_47 | WA | - |
testcase_48 | AC | 33 ms
10,880 KB |
testcase_49 | AC | 32 ms
10,752 KB |
testcase_50 | AC | 30 ms
10,752 KB |
testcase_51 | AC | 31 ms
10,752 KB |
ソースコード
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 == n // 2: first = True if i + 1 < n: dfsr(i + 2, like + bb[i + 1], money - cc[i + 1], first) 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()