結果

問題 No.844 split game
ユーザー kuuso1kuuso1
提出日時 2019-06-28 22:28:21
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 193 ms / 2,000 ms
コード長 1,969 bytes
コンパイル時間 1,421 ms
コンパイル使用メモリ 107,776 KB
実行使用メモリ 32,128 KB
最終ジャッジ日時 2024-07-02 04:55:13
合計ジャッジ時間 7,302 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 88 ms
24,960 KB
testcase_01 AC 94 ms
29,824 KB
testcase_02 AC 147 ms
24,832 KB
testcase_03 AC 129 ms
29,568 KB
testcase_04 AC 73 ms
22,784 KB
testcase_05 AC 165 ms
30,208 KB
testcase_06 AC 69 ms
23,680 KB
testcase_07 AC 71 ms
27,264 KB
testcase_08 AC 50 ms
22,784 KB
testcase_09 AC 122 ms
23,040 KB
testcase_10 AC 164 ms
26,880 KB
testcase_11 AC 170 ms
30,464 KB
testcase_12 AC 120 ms
22,912 KB
testcase_13 AC 86 ms
22,272 KB
testcase_14 AC 92 ms
25,856 KB
testcase_15 AC 193 ms
31,744 KB
testcase_16 AC 191 ms
31,744 KB
testcase_17 AC 185 ms
31,872 KB
testcase_18 AC 185 ms
32,128 KB
testcase_19 AC 185 ms
32,000 KB
testcase_20 AC 184 ms
32,000 KB
testcase_21 AC 183 ms
31,872 KB
testcase_22 AC 180 ms
32,000 KB
testcase_23 AC 32 ms
19,156 KB
testcase_24 AC 38 ms
20,688 KB
testcase_25 AC 34 ms
19,304 KB
testcase_26 AC 30 ms
18,680 KB
testcase_27 AC 37 ms
19,968 KB
testcase_28 AC 28 ms
18,772 KB
testcase_29 AC 36 ms
20,284 KB
testcase_30 AC 39 ms
20,672 KB
testcase_31 AC 37 ms
20,136 KB
testcase_32 AC 28 ms
18,816 KB
testcase_33 AC 42 ms
20,952 KB
testcase_34 AC 37 ms
20,096 KB
testcase_35 AC 44 ms
21,556 KB
testcase_36 AC 37 ms
20,304 KB
testcase_37 AC 53 ms
21,976 KB
testcase_38 AC 73 ms
22,240 KB
testcase_39 AC 123 ms
23,552 KB
testcase_40 AC 60 ms
23,040 KB
testcase_41 AC 26 ms
17,920 KB
testcase_42 AC 26 ms
18,048 KB
testcase_43 AC 26 ms
18,176 KB
testcase_44 AC 25 ms
18,048 KB
testcase_45 AC 26 ms
17,920 KB
testcase_46 AC 27 ms
18,304 KB
testcase_47 AC 26 ms
17,920 KB
testcase_48 AC 26 ms
18,048 KB
testcase_49 AC 26 ms
18,048 KB
testcase_50 AC 26 ms
17,920 KB
testcase_51 AC 26 ms
18,176 KB
testcase_52 AC 26 ms
17,920 KB
testcase_53 AC 26 ms
17,792 KB
testcase_54 AC 26 ms
18,176 KB
testcase_55 AC 26 ms
18,048 KB
testcase_56 AC 26 ms
18,176 KB
testcase_57 AC 26 ms
18,176 KB
testcase_58 AC 26 ms
18,176 KB
testcase_59 AC 26 ms
18,048 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;
using System.Collections;
using System.Collections.Generic;
using System.Linq;
using System.Text;

class TEST{
	static void Main(){
		Sol mySol =new Sol();
		mySol.Solve();
	}
}

class Sol{
	public void Solve(){
		
		long Inf = (long) 1e18;
		long[][] dp = new long[2][];
		for(int i=0;i<2;i++) {
			dp[i] = new long[N + 1];
			for(int j=0;j<=N;j++) dp[i][j] = -Inf;
		}
		List<int>[] E = new List<int>[N + 1];
		for(int i=0;i<N+1;i++) E[i] = new List<int>();
		for(int i=0;i<M;i++){
			E[L[i]].Add(i);
		}
		
		dp[1][0] = 0;
		for(int i=0;i<N;i++){
			for(int j=0;j<2;j++){
				if(dp[j][i] == -Inf) continue;
				foreach(var e in E[i]){
					long lose = A;
					if(R[e] + 1 == N) lose -= A;
					if(j == 0) lose += A;
					dp[1][R[e] + 1] = Math.Max(dp[1][R[e] + 1], dp[j][i] + P[e] - lose);
				}
				dp[0][i + 1] = Math.Max(dp[0][i + 1], dp[j][i]);
				dp[1][i + 1] = Math.Max(dp[1][i + 1], dp[j][i] - (i + 1 == N ? 0 : A));
			}
//for(int k=0;k<2;k++) Console.WriteLine("{0};{1}",k,String.Join(" ",dp[k]));
		}
		
		Console.WriteLine(Math.Max(dp[0][N], dp[1][N]));
		
	}
	int N,M;
	long A;
	int[] L,R;
	long[] P;
	public Sol(){
		var d = ria();
		N = d[0]; M = d[1]; A = d[2];
		L = new int[M];
		R = new int[M];
		P = new long[M];
		for(int i=0;i<M;i++){
			d = ria();
			L[i] = d[0] - 1; R[i] = d[1] - 1; P[i] = d[2];
		}
	}

	static String rs(){return Console.ReadLine();}
	static int ri(){return int.Parse(Console.ReadLine());}
	static long rl(){return long.Parse(Console.ReadLine());}
	static double rd(){return double.Parse(Console.ReadLine());}
	static String[] rsa(char sep=' '){return Console.ReadLine().Split(sep);}
	static int[] ria(char sep=' '){return Array.ConvertAll(Console.ReadLine().Split(sep),e=>int.Parse(e));}
	static long[] rla(char sep=' '){return Array.ConvertAll(Console.ReadLine().Split(sep),e=>long.Parse(e));}
	static double[] rda(char sep=' '){return Array.ConvertAll(Console.ReadLine().Split(sep),e=>double.Parse(e));}
}
0