結果

問題 No.844 split game
ユーザー ks2mks2m
提出日時 2019-06-28 23:00:07
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,568 bytes
コンパイル時間 2,244 ms
コンパイル使用メモリ 78,356 KB
実行使用メモリ 72,024 KB
最終ジャッジ日時 2024-07-02 05:06:23
合計ジャッジ時間 18,552 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 292 ms
60,160 KB
testcase_01 AC 281 ms
59,780 KB
testcase_02 AC 473 ms
64,136 KB
testcase_03 AC 394 ms
64,056 KB
testcase_04 AC 267 ms
59,408 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 578 ms
69,620 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 579 ms
69,948 KB
testcase_19 AC 564 ms
69,904 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 129 ms
52,912 KB
testcase_27 WA -
testcase_28 AC 109 ms
51,624 KB
testcase_29 AC 157 ms
54,880 KB
testcase_30 WA -
testcase_31 WA -
testcase_32 AC 104 ms
51,924 KB
testcase_33 AC 155 ms
55,460 KB
testcase_34 AC 148 ms
54,992 KB
testcase_35 AC 163 ms
55,376 KB
testcase_36 AC 155 ms
54,804 KB
testcase_37 AC 188 ms
55,456 KB
testcase_38 AC 254 ms
57,384 KB
testcase_39 AC 376 ms
62,212 KB
testcase_40 AC 227 ms
57,952 KB
testcase_41 AC 55 ms
50,208 KB
testcase_42 AC 56 ms
50,156 KB
testcase_43 AC 54 ms
49,952 KB
testcase_44 AC 55 ms
50,152 KB
testcase_45 AC 56 ms
49,992 KB
testcase_46 AC 55 ms
50,012 KB
testcase_47 AC 55 ms
50,128 KB
testcase_48 WA -
testcase_49 AC 55 ms
49,896 KB
testcase_50 AC 55 ms
50,240 KB
testcase_51 AC 55 ms
49,840 KB
testcase_52 AC 56 ms
49,896 KB
testcase_53 AC 55 ms
50,208 KB
testcase_54 AC 56 ms
49,980 KB
testcase_55 AC 56 ms
50,160 KB
testcase_56 AC 55 ms
49,960 KB
testcase_57 AC 55 ms
50,084 KB
testcase_58 AC 56 ms
50,124 KB
testcase_59 AC 56 ms
49,852 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);
			if (list == null) {
				dp[i] = max - a;
			} else {
				long max1 = Long.MIN_VALUE;
				for (Area area : list) {
					long val = dp[area.l - 1] + area.p;
					max1 = Math.max(max1, val);
				}
				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