結果

問題 No.844 split game
ユーザー terasaterasa
提出日時 2022-06-29 00:04:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 215 ms / 2,000 ms
コード長 1,197 bytes
コンパイル時間 177 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 88,704 KB
最終ジャッジ日時 2024-11-21 19:18:22
合計ジャッジ時間 8,314 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
79,360 KB
testcase_01 AC 115 ms
82,304 KB
testcase_02 AC 151 ms
81,792 KB
testcase_03 AC 138 ms
84,224 KB
testcase_04 AC 117 ms
79,360 KB
testcase_05 AC 183 ms
86,016 KB
testcase_06 AC 104 ms
79,360 KB
testcase_07 AC 105 ms
81,920 KB
testcase_08 AC 108 ms
78,720 KB
testcase_09 AC 136 ms
80,000 KB
testcase_10 AC 194 ms
85,760 KB
testcase_11 AC 184 ms
87,040 KB
testcase_12 AC 135 ms
80,256 KB
testcase_13 AC 112 ms
78,336 KB
testcase_14 AC 154 ms
82,688 KB
testcase_15 AC 175 ms
87,296 KB
testcase_16 AC 186 ms
87,680 KB
testcase_17 AC 184 ms
87,552 KB
testcase_18 AC 176 ms
87,936 KB
testcase_19 AC 215 ms
88,704 KB
testcase_20 AC 176 ms
87,680 KB
testcase_21 AC 187 ms
87,424 KB
testcase_22 AC 179 ms
87,552 KB
testcase_23 AC 78 ms
71,424 KB
testcase_24 AC 103 ms
77,440 KB
testcase_25 AC 76 ms
71,168 KB
testcase_26 AC 72 ms
68,864 KB
testcase_27 AC 82 ms
74,112 KB
testcase_28 AC 63 ms
64,384 KB
testcase_29 AC 96 ms
77,824 KB
testcase_30 AC 92 ms
77,312 KB
testcase_31 AC 97 ms
76,800 KB
testcase_32 AC 70 ms
67,328 KB
testcase_33 AC 74 ms
71,552 KB
testcase_34 AC 68 ms
68,096 KB
testcase_35 AC 73 ms
72,448 KB
testcase_36 AC 74 ms
69,120 KB
testcase_37 AC 83 ms
76,800 KB
testcase_38 AC 96 ms
77,568 KB
testcase_39 AC 124 ms
80,000 KB
testcase_40 AC 105 ms
80,384 KB
testcase_41 AC 49 ms
54,528 KB
testcase_42 AC 48 ms
54,784 KB
testcase_43 AC 48 ms
54,656 KB
testcase_44 AC 48 ms
54,784 KB
testcase_45 AC 48 ms
54,400 KB
testcase_46 AC 48 ms
54,656 KB
testcase_47 AC 49 ms
54,144 KB
testcase_48 AC 49 ms
54,272 KB
testcase_49 AC 50 ms
54,528 KB
testcase_50 AC 48 ms
54,656 KB
testcase_51 AC 48 ms
54,272 KB
testcase_52 AC 49 ms
54,912 KB
testcase_53 AC 49 ms
54,528 KB
testcase_54 AC 48 ms
54,144 KB
testcase_55 AC 49 ms
54,528 KB
testcase_56 AC 49 ms
54,528 KB
testcase_57 AC 48 ms
54,400 KB
testcase_58 AC 48 ms
54,016 KB
testcase_59 AC 48 ms
54,400 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import pypyjit
import itertools
import heapq
import math
from collections import deque, defaultdict
import bisect

input = sys.stdin.readline
sys.setrecursionlimit(10 ** 6)
pypyjit.set_param('max_unroll_recursion=-1')


def index_lt(a, x):
    'return largest index s.t. A[i] < x or -1 if it does not exist'
    return bisect.bisect_left(a, x) - 1


def index_le(a, x):
    'return largest index s.t. A[i] <= x or -1 if it does not exist'
    return bisect.bisect_right(a, x) - 1


def index_gt(a, x):
    'return smallest index s.t. A[i] > x or len(a) if it does not exist'
    return bisect.bisect_right(a, x)


def index_ge(a, x):
    'return smallest index s.t. A[i] >= x or len(a) if it does not exist'
    return bisect.bisect_left(a, x)


N, M, A = map(int, input().split())
E = [[] for _ in range(N)]
for _ in range(M):
    l, r, p = map(int, input().split())
    l -= 1
    E[l].append((r, p))

INF = 1 << 50
dp = [-INF] * (N + 1)
dp[0] = 0
ma = 0
for i in range(N):
    for j, p in E[i]:
        if j == N:
            dp[j] = max(dp[j], dp[i] + p, ma + p - A)
        else:
            dp[j] = max(dp[j], dp[i] + p - A, ma + p - 2 * A)
    ma = max(ma, dp[i])
print(max(dp))
0