結果

問題 No.818 Dinner time
ユーザー CuriousFairy315CuriousFairy315
提出日時 2019-04-13 23:28:43
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 58 ms / 2,000 ms
コード長 717 bytes
コンパイル時間 673 ms
コンパイル使用メモリ 63,872 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-07 08:12:38
合計ジャッジ時間 2,570 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
5,376 KB
testcase_18 AC 35 ms
5,376 KB
testcase_19 AC 38 ms
5,376 KB
testcase_20 AC 50 ms
5,376 KB
testcase_21 AC 46 ms
5,376 KB
testcase_22 AC 34 ms
5,376 KB
testcase_23 AC 40 ms
5,376 KB
testcase_24 AC 58 ms
5,376 KB
testcase_25 AC 40 ms
5,376 KB
testcase_26 AC 33 ms
5,376 KB
testcase_27 AC 50 ms
5,376 KB
testcase_28 AC 42 ms
5,376 KB
testcase_29 AC 54 ms
5,376 KB
testcase_30 AC 46 ms
5,376 KB
testcase_31 AC 49 ms
5,376 KB
testcase_32 AC 42 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<cstdint>
using namespace std; // 575

const int64_t INF = 3e16;//4611686018427387903; // 10^62-1、使わない辺とかに用いる
int main() {
	int64_t N, M, A, B;
	cin >> N >> M >> A >> B;
	int64_t everyday = max(max(A, B) + A * (M - 1), B), oneday = -INF, nothanks = -INF; // 1番目の鶏は固定で選ばれる
	while (--N) {
		cin >> A >> B;
		nothanks = max(max(everyday, oneday), nothanks); // 選ばない
		oneday = max(everyday, oneday) + max(A, B); // 初日のみ
		everyday = everyday + max(max(A, B) + A * (M - 1), B); // 毎日選ぶ(毎日卵、最後の日だけ鶏肉、初日で殺す、の3択)
	}
	cout << max(max(everyday, oneday), nothanks) << endl;
	return 0;
}
0