結果

問題 No.844 split game
ユーザー kotatsugamekotatsugame
提出日時 2019-06-28 23:29:00
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 118 ms / 2,000 ms
コード長 509 bytes
コンパイル時間 756 ms
コンパイル使用メモリ 73,600 KB
実行使用メモリ 10,052 KB
最終ジャッジ日時 2024-07-02 05:12:46
合計ジャッジ時間 4,758 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
7,716 KB
testcase_01 AC 34 ms
8,388 KB
testcase_02 AC 94 ms
9,664 KB
testcase_03 AC 65 ms
8,900 KB
testcase_04 AC 34 ms
7,624 KB
testcase_05 AC 104 ms
9,800 KB
testcase_06 AC 33 ms
7,596 KB
testcase_07 AC 26 ms
7,600 KB
testcase_08 AC 18 ms
6,944 KB
testcase_09 AC 80 ms
8,564 KB
testcase_10 AC 113 ms
9,588 KB
testcase_11 AC 105 ms
9,716 KB
testcase_12 AC 76 ms
8,628 KB
testcase_13 AC 48 ms
8,516 KB
testcase_14 AC 48 ms
8,084 KB
testcase_15 AC 117 ms
9,924 KB
testcase_16 AC 116 ms
9,856 KB
testcase_17 AC 117 ms
9,836 KB
testcase_18 AC 116 ms
10,052 KB
testcase_19 AC 115 ms
10,000 KB
testcase_20 AC 116 ms
9,944 KB
testcase_21 AC 118 ms
9,828 KB
testcase_22 AC 118 ms
9,996 KB
testcase_23 AC 7 ms
7,364 KB
testcase_24 AC 10 ms
6,944 KB
testcase_25 AC 7 ms
6,940 KB
testcase_26 AC 5 ms
6,940 KB
testcase_27 AC 10 ms
6,944 KB
testcase_28 AC 4 ms
6,940 KB
testcase_29 AC 9 ms
6,940 KB
testcase_30 AC 11 ms
6,940 KB
testcase_31 AC 10 ms
6,940 KB
testcase_32 AC 5 ms
6,944 KB
testcase_33 AC 13 ms
6,940 KB
testcase_34 AC 8 ms
6,940 KB
testcase_35 AC 14 ms
7,016 KB
testcase_36 AC 10 ms
7,108 KB
testcase_37 AC 19 ms
6,944 KB
testcase_38 AC 33 ms
7,492 KB
testcase_39 AC 66 ms
8,596 KB
testcase_40 AC 22 ms
7,564 KB
testcase_41 AC 4 ms
6,976 KB
testcase_42 AC 4 ms
6,984 KB
testcase_43 AC 3 ms
6,940 KB
testcase_44 AC 3 ms
6,940 KB
testcase_45 AC 4 ms
6,944 KB
testcase_46 AC 3 ms
6,940 KB
testcase_47 AC 4 ms
7,364 KB
testcase_48 AC 4 ms
6,944 KB
testcase_49 AC 3 ms
6,944 KB
testcase_50 AC 3 ms
6,944 KB
testcase_51 AC 3 ms
6,944 KB
testcase_52 AC 3 ms
6,984 KB
testcase_53 AC 4 ms
6,940 KB
testcase_54 AC 3 ms
6,944 KB
testcase_55 AC 3 ms
6,940 KB
testcase_56 AC 4 ms
6,940 KB
testcase_57 AC 3 ms
6,944 KB
testcase_58 AC 3 ms
6,944 KB
testcase_59 AC 3 ms
6,944 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:9:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
    9 | main()
      | ^~~~

ソースコード

diff #

#include<iostream>
#include<vector>
#include<algorithm>
using namespace std;
int N,M;
long A;
vector<pair<int,long> >G[1<<17];
long dp[1<<17];
main()
{
	cin>>N>>M>>A;
	for(int i=0;i<M;i++)
	{
		long l,r,p;cin>>l>>r>>p;
		G[l-1].push_back({r,p});
	}
	for(int i=1;i<N;i++)dp[i]=-1e18;
	long ans=0;
	for(int i=0;i<N;i++)
	{
		ans=max(ans,dp[i]);
		if(i)dp[i]=max(dp[i],ans-A);
		for(pair<int,long>p:G[i])
		{
			dp[p.first]=max(dp[p.first],dp[i]+p.second-(p.first==N?0:A));
		}
	}
	cout<<max(ans,dp[N])<<endl;
}
0