結果

問題 No.844 split game
ユーザー ks2mks2m
提出日時 2019-06-28 22:55:24
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,566 bytes
コンパイル時間 2,225 ms
コンパイル使用メモリ 78,192 KB
実行使用メモリ 59,820 KB
最終ジャッジ日時 2024-07-02 05:05:16
合計ジャッジ時間 18,991 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 298 ms
49,304 KB
testcase_01 AC 299 ms
49,864 KB
testcase_02 AC 473 ms
52,520 KB
testcase_03 AC 409 ms
53,324 KB
testcase_04 AC 267 ms
48,256 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 580 ms
59,208 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 580 ms
59,252 KB
testcase_19 AC 568 ms
59,196 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 128 ms
40,532 KB
testcase_27 WA -
testcase_28 AC 106 ms
39,140 KB
testcase_29 AC 162 ms
42,928 KB
testcase_30 WA -
testcase_31 WA -
testcase_32 AC 110 ms
38,960 KB
testcase_33 AC 160 ms
43,628 KB
testcase_34 AC 136 ms
42,088 KB
testcase_35 AC 165 ms
43,568 KB
testcase_36 AC 150 ms
42,108 KB
testcase_37 AC 189 ms
44,192 KB
testcase_38 AC 256 ms
47,720 KB
testcase_39 AC 396 ms
50,084 KB
testcase_40 AC 238 ms
47,232 KB
testcase_41 AC 52 ms
36,656 KB
testcase_42 AC 52 ms
36,324 KB
testcase_43 AC 52 ms
36,764 KB
testcase_44 AC 52 ms
36,672 KB
testcase_45 AC 52 ms
36,632 KB
testcase_46 AC 52 ms
36,668 KB
testcase_47 AC 51 ms
36,812 KB
testcase_48 WA -
testcase_49 AC 51 ms
36,840 KB
testcase_50 AC 52 ms
36,928 KB
testcase_51 AC 52 ms
36,312 KB
testcase_52 AC 52 ms
36,840 KB
testcase_53 AC 52 ms
36,868 KB
testcase_54 AC 52 ms
36,536 KB
testcase_55 AC 53 ms
36,440 KB
testcase_56 AC 53 ms
36,532 KB
testcase_57 AC 52 ms
36,572 KB
testcase_58 AC 53 ms
36,992 KB
testcase_59 AC 53 ms
36,576 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