結果

問題 No.561 東京と京都
ユーザー doikimihirodoikimihiro
提出日時 2018-06-17 00:00:56
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 641 bytes
コンパイル時間 551 ms
コンパイル使用メモリ 72,020 KB
実行使用メモリ 4,384 KB
最終ジャッジ日時 2023-09-13 06:17:03
合計ジャッジ時間 1,616 ms
ジャッジサーバーID
(参考情報)
judge15 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,380 KB
testcase_01 AC 1 ms
4,380 KB
testcase_02 AC 2 ms
4,380 KB
testcase_03 AC 1 ms
4,376 KB
testcase_04 AC 2 ms
4,380 KB
testcase_05 AC 1 ms
4,376 KB
testcase_06 AC 1 ms
4,384 KB
testcase_07 AC 2 ms
4,380 KB
testcase_08 AC 1 ms
4,380 KB
testcase_09 AC 1 ms
4,376 KB
testcase_10 AC 1 ms
4,376 KB
testcase_11 AC 1 ms
4,376 KB
testcase_12 AC 1 ms
4,380 KB
testcase_13 AC 1 ms
4,380 KB
testcase_14 AC 1 ms
4,376 KB
testcase_15 AC 1 ms
4,376 KB
testcase_16 AC 1 ms
4,376 KB
testcase_17 AC 1 ms
4,380 KB
testcase_18 AC 1 ms
4,376 KB
testcase_19 AC 1 ms
4,380 KB
testcase_20 AC 1 ms
4,380 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<vector>
#include<iostream>
#include<algorithm>
using namespace std;

int main() {
	int N, cost;
	cin >> N >> cost;
	vector<int>tokyo(N);
	vector<int>kyoto(N);
	for (int i = 0; i < N; i++) {
		cin >> tokyo[i] >> kyoto[i];
	}
	vector<int>dp_tokyo(N+1,0);
	vector<int>dp_kyoto(N + 1,0);
	dp_kyoto[0] = -cost;
	for (int i = 0; i < N; i++) {
		dp_tokyo[i + 1] = max(dp_tokyo[i] + tokyo[i], dp_kyoto[i] - cost + tokyo[i]);
		dp_kyoto[i + 1] = max(dp_kyoto[i] + kyoto[i], dp_tokyo[i] - cost + kyoto[i]);
	}
	if (dp_tokyo[N] > dp_kyoto[N]) {
		cout << dp_tokyo[N] << endl;
	}
	else {
		cout << dp_kyoto[N] << endl;
	}
	return 0;
}









0