結果

問題 No.844 split game
ユーザー ks2mks2m
提出日時 2019-06-28 23:34:33
言語 Java21
(openjdk 21)
結果
AC  
実行時間 601 ms / 2,000 ms
コード長 1,572 bytes
コンパイル時間 2,429 ms
コンパイル使用メモリ 77,980 KB
実行使用メモリ 59,796 KB
最終ジャッジ日時 2024-07-02 05:14:36
合計ジャッジ時間 19,182 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 294 ms
49,744 KB
testcase_01 AC 286 ms
49,444 KB
testcase_02 AC 478 ms
52,388 KB
testcase_03 AC 401 ms
53,444 KB
testcase_04 AC 267 ms
48,492 KB
testcase_05 AC 525 ms
55,748 KB
testcase_06 AC 257 ms
46,836 KB
testcase_07 AC 248 ms
47,180 KB
testcase_08 AC 192 ms
44,488 KB
testcase_09 AC 397 ms
49,788 KB
testcase_10 AC 541 ms
55,192 KB
testcase_11 AC 561 ms
57,196 KB
testcase_12 AC 379 ms
49,876 KB
testcase_13 AC 292 ms
48,360 KB
testcase_14 AC 314 ms
50,908 KB
testcase_15 AC 581 ms
59,796 KB
testcase_16 AC 600 ms
59,732 KB
testcase_17 AC 590 ms
59,672 KB
testcase_18 AC 586 ms
58,468 KB
testcase_19 AC 601 ms
59,204 KB
testcase_20 AC 580 ms
58,732 KB
testcase_21 AC 578 ms
59,512 KB
testcase_22 AC 583 ms
59,260 KB
testcase_23 AC 142 ms
41,048 KB
testcase_24 AC 165 ms
44,268 KB
testcase_25 AC 145 ms
41,704 KB
testcase_26 AC 128 ms
40,744 KB
testcase_27 AC 155 ms
42,860 KB
testcase_28 AC 93 ms
38,756 KB
testcase_29 AC 161 ms
42,772 KB
testcase_30 AC 156 ms
44,620 KB
testcase_31 AC 162 ms
42,904 KB
testcase_32 AC 105 ms
39,144 KB
testcase_33 AC 161 ms
43,276 KB
testcase_34 AC 146 ms
41,760 KB
testcase_35 AC 165 ms
43,584 KB
testcase_36 AC 151 ms
42,508 KB
testcase_37 AC 189 ms
44,416 KB
testcase_38 AC 252 ms
47,448 KB
testcase_39 AC 407 ms
50,188 KB
testcase_40 AC 237 ms
47,136 KB
testcase_41 AC 52 ms
36,876 KB
testcase_42 AC 52 ms
36,828 KB
testcase_43 AC 53 ms
36,972 KB
testcase_44 AC 53 ms
36,876 KB
testcase_45 AC 53 ms
36,952 KB
testcase_46 AC 52 ms
36,884 KB
testcase_47 AC 53 ms
36,544 KB
testcase_48 AC 54 ms
36,760 KB
testcase_49 AC 52 ms
36,824 KB
testcase_50 AC 52 ms
36,576 KB
testcase_51 AC 54 ms
36,492 KB
testcase_52 AC 53 ms
36,328 KB
testcase_53 AC 51 ms
36,632 KB
testcase_54 AC 52 ms
36,660 KB
testcase_55 AC 52 ms
36,324 KB
testcase_56 AC 51 ms
36,624 KB
testcase_57 AC 53 ms
36,668 KB
testcase_58 AC 53 ms
36,844 KB
testcase_59 AC 54 ms
36,568 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;

public class Main {
	public static void main(String[] args) throws Exception {
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		String[] sa = br.readLine().split(" ");
		int n = Integer.parseInt(sa[0]);
		int m = Integer.parseInt(sa[1]);
		int a = Integer.parseInt(sa[2]);
		Map<Integer, List<Area>> map = new HashMap<>();
		for (int i = 0; i < m; i++) {
			sa = br.readLine().split(" ");
			Area area = new Area();
			area.l = Integer.parseInt(sa[0]);
			area.r = Integer.parseInt(sa[1]);
			area.p = Integer.parseInt(sa[2]);
			List<Area> list = map.get(area.r);
			if (list == null) {
				list = new ArrayList<>();
				map.put(area.r, list);
			}
			list.add(area);
		}
		br.close();

		long[] dp = new long[n + 1];
		long max = 0;
		for (int i = 1; i < n; i++) {
			List<Area> list = map.get(i);
			dp[i] = max - a;
			if (list != null) {
				long max1 = Long.MIN_VALUE;
				for (Area area : list) {
					long val = dp[area.l - 1] + area.p;
					max1 = Math.max(max1, val);
				}
				dp[i] = Math.max(dp[i], max1 - a);
			}
			max = Math.max(max, dp[i]);
		}

		List<Area> list = map.get(n);
		if (list != null) {
			long max1 = Long.MIN_VALUE;
			for (Area area : list) {
				long val = dp[area.l - 1] + area.p;
				max1 = Math.max(max1, val);
			}
			dp[n] = max1;
			max = Math.max(max, dp[n]);
		}
		System.out.println(max);
	}

	static class Area {
		int l, r, p;
	}
}
0