結果

問題 No.844 split game
ユーザー Coki628Coki628
提出日時 2020-08-14 16:07:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 195 ms / 2,000 ms
コード長 1,195 bytes
コンパイル時間 146 ms
コンパイル使用メモリ 83,088 KB
実行使用メモリ 89,400 KB
最終ジャッジ日時 2024-10-10 12:01:23
合計ジャッジ時間 7,823 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
81,328 KB
testcase_01 AC 108 ms
82,860 KB
testcase_02 AC 154 ms
83,592 KB
testcase_03 AC 139 ms
84,480 KB
testcase_04 AC 106 ms
79,828 KB
testcase_05 AC 184 ms
87,636 KB
testcase_06 AC 105 ms
80,176 KB
testcase_07 AC 98 ms
82,284 KB
testcase_08 AC 96 ms
79,292 KB
testcase_09 AC 127 ms
80,960 KB
testcase_10 AC 186 ms
86,932 KB
testcase_11 AC 192 ms
89,316 KB
testcase_12 AC 121 ms
79,496 KB
testcase_13 AC 115 ms
79,500 KB
testcase_14 AC 134 ms
83,036 KB
testcase_15 AC 186 ms
89,084 KB
testcase_16 AC 189 ms
89,348 KB
testcase_17 AC 191 ms
88,932 KB
testcase_18 AC 184 ms
88,872 KB
testcase_19 AC 194 ms
88,896 KB
testcase_20 AC 188 ms
88,860 KB
testcase_21 AC 195 ms
89,224 KB
testcase_22 AC 190 ms
89,400 KB
testcase_23 AC 72 ms
74,972 KB
testcase_24 AC 81 ms
77,436 KB
testcase_25 AC 65 ms
73,120 KB
testcase_26 AC 64 ms
71,696 KB
testcase_27 AC 67 ms
74,504 KB
testcase_28 AC 53 ms
66,160 KB
testcase_29 AC 86 ms
77,880 KB
testcase_30 AC 85 ms
77,932 KB
testcase_31 AC 78 ms
77,096 KB
testcase_32 AC 60 ms
69,876 KB
testcase_33 AC 56 ms
73,096 KB
testcase_34 AC 54 ms
68,056 KB
testcase_35 AC 59 ms
73,228 KB
testcase_36 AC 54 ms
70,280 KB
testcase_37 AC 68 ms
77,340 KB
testcase_38 AC 91 ms
77,688 KB
testcase_39 AC 144 ms
81,736 KB
testcase_40 AC 96 ms
80,812 KB
testcase_41 AC 36 ms
53,296 KB
testcase_42 AC 36 ms
53,544 KB
testcase_43 AC 37 ms
53,520 KB
testcase_44 AC 37 ms
53,444 KB
testcase_45 AC 36 ms
53,304 KB
testcase_46 AC 37 ms
54,260 KB
testcase_47 AC 37 ms
54,692 KB
testcase_48 AC 37 ms
54,052 KB
testcase_49 AC 36 ms
53,224 KB
testcase_50 AC 36 ms
53,552 KB
testcase_51 AC 37 ms
53,216 KB
testcase_52 AC 37 ms
52,460 KB
testcase_53 AC 37 ms
53,900 KB
testcase_54 AC 37 ms
52,788 KB
testcase_55 AC 36 ms
53,932 KB
testcase_56 AC 37 ms
53,144 KB
testcase_57 AC 36 ms
53,116 KB
testcase_58 AC 37 ms
53,012 KB
testcase_59 AC 36 ms
53,160 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

def input(): return sys.stdin.readline().strip()
def list2d(a, b, c): return [[c] * b for i in range(a)]
def list3d(a, b, c, d): return [[[d] * c for j in range(b)] for i in range(a)]
def list4d(a, b, c, d, e): return [[[[e] * d for j in range(c)] for j in range(b)] for i in range(a)]
def ceil(x, y=1): return int(-(-x // y))
def INT(): return int(input())
def MAP(): return map(int, input().split())
def LIST(N=None): return list(MAP()) if N is None else [INT() for i in range(N)]
def Yes(): print('Yes')
def No(): print('No')
def YES(): print('YES')
def NO(): print('NO')
sys.setrecursionlimit(10 ** 9)
INF = 10 ** 19
MOD = 10 ** 9 + 7
EPS = 10 ** -10

N, M, K = MAP()

RL = [[] for i in range(N+1)]
for i in range(M):
    l, r, p = MAP()
    l -= 1
    RL[r].append((l, p))

dp0 = [-INF] * (N+1)
dp1 = [-INF] * (N+1)
dp0[0] = dp1[0] = 0
for r in range(1, N+1):
    dp0[r] = max(dp0[r-1], dp1[r-1])
    for l, p in RL[r]:
        if r == N:
            dp1[r] = max(dp1[r], dp0[l] + p-K)
            dp1[r] = max(dp1[r], dp1[l] + p)
        else:
            dp1[r] = max(dp1[r], dp0[l] + p-K*2)
            dp1[r] = max(dp1[r], dp1[l] + p-K)
ans = max(dp0[N], dp1[N])
print(ans)
0