結果

問題 No.818 Dinner time
ユーザー pockynypockyny
提出日時 2019-04-20 15:28:39
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 59 ms / 2,000 ms
コード長 496 bytes
コンパイル時間 694 ms
コンパイル使用メモリ 71,936 KB
実行使用メモリ 6,400 KB
最終ジャッジ日時 2024-05-07 08:23:10
合計ジャッジ時間 2,635 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 1 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 50 ms
6,400 KB
testcase_18 AC 36 ms
5,376 KB
testcase_19 AC 39 ms
5,504 KB
testcase_20 AC 51 ms
6,144 KB
testcase_21 AC 47 ms
5,760 KB
testcase_22 AC 35 ms
5,376 KB
testcase_23 AC 42 ms
5,504 KB
testcase_24 AC 59 ms
6,400 KB
testcase_25 AC 41 ms
5,504 KB
testcase_26 AC 34 ms
5,376 KB
testcase_27 AC 52 ms
6,016 KB
testcase_28 AC 42 ms
5,504 KB
testcase_29 AC 55 ms
6,272 KB
testcase_30 AC 48 ms
5,888 KB
testcase_31 AC 51 ms
6,016 KB
testcase_32 AC 43 ms
5,632 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>

using namespace std;
typedef long long ll;
ll dp[100010][2] = {},a[100010],b[100010];
int main(){
	ll i,n,m;
	cin >> n >> m;
	for(i=0;i<n;i++){
		cin >> a[i] >> b[i];
	}
	dp[n-1][0] = max(a[n-1],b[n-1]);
	dp[n-1][1] = max({(m-1)*a[n-1] + b[n-1],m*a[n-1],b[n-1]});
	for(i=n-2;i>=0;i--){
		dp[i][0] = max(dp[i+1][0],0LL) + max(a[i],b[i]);
		dp[i][1] = max({dp[i+1][0],dp[i+1][1],0LL}) + max({(m-1)*a[i] + b[i],m*a[i],b[i]});
	}
	cout << dp[0][1] << endl;
}
0