結果

問題 No.844 split game
ユーザー GrenacheGrenache
提出日時 2019-06-29 11:17:32
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,370 ms / 2,000 ms
コード長 2,284 bytes
コンパイル時間 4,200 ms
コンパイル使用メモリ 80,136 KB
実行使用メモリ 69,908 KB
最終ジャッジ日時 2024-07-02 05:27:14
合計ジャッジ時間 41,479 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 733 ms
53,676 KB
testcase_01 AC 683 ms
54,552 KB
testcase_02 AC 1,124 ms
63,764 KB
testcase_03 AC 951 ms
59,628 KB
testcase_04 AC 583 ms
49,748 KB
testcase_05 AC 1,201 ms
66,088 KB
testcase_06 AC 650 ms
50,832 KB
testcase_07 AC 530 ms
51,464 KB
testcase_08 AC 480 ms
49,756 KB
testcase_09 AC 986 ms
60,900 KB
testcase_10 AC 1,287 ms
65,372 KB
testcase_11 AC 1,258 ms
67,648 KB
testcase_12 AC 954 ms
59,312 KB
testcase_13 AC 732 ms
53,324 KB
testcase_14 AC 805 ms
54,360 KB
testcase_15 AC 1,327 ms
67,704 KB
testcase_16 AC 1,362 ms
68,508 KB
testcase_17 AC 1,330 ms
68,548 KB
testcase_18 AC 1,350 ms
69,020 KB
testcase_19 AC 1,370 ms
68,280 KB
testcase_20 AC 1,358 ms
67,376 KB
testcase_21 AC 1,346 ms
69,908 KB
testcase_22 AC 1,366 ms
68,444 KB
testcase_23 AC 268 ms
47,168 KB
testcase_24 AC 393 ms
48,516 KB
testcase_25 AC 298 ms
47,504 KB
testcase_26 AC 243 ms
45,960 KB
testcase_27 AC 342 ms
47,492 KB
testcase_28 AC 223 ms
45,472 KB
testcase_29 AC 345 ms
47,960 KB
testcase_30 AC 374 ms
48,768 KB
testcase_31 AC 355 ms
48,368 KB
testcase_32 AC 230 ms
45,768 KB
testcase_33 AC 415 ms
48,608 KB
testcase_34 AC 324 ms
47,384 KB
testcase_35 AC 453 ms
48,724 KB
testcase_36 AC 352 ms
48,028 KB
testcase_37 AC 518 ms
48,768 KB
testcase_38 AC 676 ms
49,924 KB
testcase_39 AC 897 ms
59,656 KB
testcase_40 AC 569 ms
52,216 KB
testcase_41 AC 120 ms
40,384 KB
testcase_42 AC 134 ms
41,292 KB
testcase_43 AC 130 ms
41,500 KB
testcase_44 AC 135 ms
41,940 KB
testcase_45 AC 119 ms
40,412 KB
testcase_46 AC 131 ms
41,320 KB
testcase_47 AC 132 ms
41,680 KB
testcase_48 AC 135 ms
41,472 KB
testcase_49 AC 132 ms
41,532 KB
testcase_50 AC 134 ms
41,588 KB
testcase_51 AC 131 ms
41,104 KB
testcase_52 AC 130 ms
41,456 KB
testcase_53 AC 121 ms
40,100 KB
testcase_54 AC 134 ms
41,832 KB
testcase_55 AC 144 ms
41,856 KB
testcase_56 AC 137 ms
41,824 KB
testcase_57 AC 140 ms
41,524 KB
testcase_58 AC 124 ms
40,180 KB
testcase_59 AC 149 ms
41,600 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;


public class Main_yukicoder844 {

	private static Scanner sc;
	private static Printer pr;

	private static void solve() {
		int n = sc.nextInt();
		int m = sc.nextInt();
		int a = sc.nextInt();

		List<List<Pair>> edges = new ArrayList<>(n);
		for (int i = 0; i < n; i++) {
			edges.add(new ArrayList<>());
		}
		for (int i = 0; i < m; i++) {
			int l = sc.nextInt();
			int r = sc.nextInt();
			int p = sc.nextInt();
			
			edges.get(l - 1).add(new Pair(r, p));
		}

		long[][] dp = new long[2][n + 1];
//		Arrays.fill(dp[0], Long.MIN_VALUE);
//		Arrays.fill(dp[1], Long.MIN_VALUE);
//		dp[0][n] = dp[1][n] = 0;
		for (int i = n - 1; i > 0; i--) {
			dp[0][i] = Math.max(dp[0][i + 1], dp[1][i + 1]);
			dp[1][i] = Math.max(dp[0][i + 1] - a, dp[1][i + 1] - a);
			for (Pair e : edges.get(i)) {
				dp[1][i] = Math.max(dp[1][i], dp[1][e.a] + e.b - a);
			}
		}
		
		dp[1][0] = Math.max(dp[0][1], dp[1][1]);
		for (Pair e : edges.get(0)) {
			dp[1][0] = Math.max(dp[1][0], dp[1][e.a] + e.b);
		}

		pr.println(dp[1][0]);
	}

	static class Pair implements Comparable<Pair> {
		int a;
		int b;

		Pair(int a, int b) {
			this.a = a;
			this.b = b;
		}

		@Override
		public int compareTo(Pair o) {
			int result = Integer.compare(a, o.a);
			if (result == 0) {
				result = Integer.compare(b, o.b);
			}
			return result;
		}

		@Override
		public int hashCode() {
			final int prime = 31;
			int result = a;
			result = prime * result + b;
			return result;
		}

		@Override
		public boolean equals(Object obj) {
			if (this == obj)
				return true;
			if (!(obj instanceof Pair))
				return false;

			Pair o = (Pair) obj;
			return a == o.a && b == o.b;
		}

		@Override
		public String toString() {
			//			Pair [xxx, xxxx]
			StringBuilder stmp = new StringBuilder(32);
			stmp.append("Pair [");
			stmp.append(a);
			stmp.append(',');
			stmp.append(' ');
			stmp.append(b);
			stmp.append(']');

			return stmp.toString();
		}
	}

	// ---------------------------------------------------
	public static void main(String[] args) {
		sc = new Scanner(System.in);
		pr = new Printer(System.out);
			
		solve();
			
		pr.close();
		sc.close();
	}

	static class Printer extends PrintWriter {
		Printer(OutputStream out) {
			super(out);
		}
	}
}
0