結果

問題 No.818 Dinner time
ユーザー daut-dlangdaut-dlang
提出日時 2019-04-19 22:20:04
言語 D
(dmd 2.105.2)
結果
WA  
実行時間 -
コード長 2,093 bytes
コンパイル時間 628 ms
コンパイル使用メモリ 97,116 KB
実行使用メモリ 7,272 KB
最終ジャッジ日時 2023-09-04 00:42:11
合計ジャッジ時間 2,836 ms
ジャッジサーバーID
(参考情報)
judge15 / judge11
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,376 KB
testcase_01 AC 2 ms
4,376 KB
testcase_02 AC 1 ms
4,376 KB
testcase_03 AC 1 ms
4,376 KB
testcase_04 AC 1 ms
4,380 KB
testcase_05 AC 2 ms
4,376 KB
testcase_06 AC 1 ms
4,376 KB
testcase_07 AC 1 ms
4,380 KB
testcase_08 AC 1 ms
4,376 KB
testcase_09 WA -
testcase_10 AC 1 ms
4,376 KB
testcase_11 WA -
testcase_12 AC 1 ms
4,376 KB
testcase_13 AC 1 ms
4,380 KB
testcase_14 AC 2 ms
4,376 KB
testcase_15 AC 2 ms
4,380 KB
testcase_16 AC 2 ms
4,376 KB
testcase_17 AC 56 ms
7,272 KB
testcase_18 AC 39 ms
6,268 KB
testcase_19 AC 40 ms
6,796 KB
testcase_20 AC 54 ms
6,928 KB
testcase_21 AC 46 ms
6,484 KB
testcase_22 AC 37 ms
6,436 KB
testcase_23 AC 43 ms
6,424 KB
testcase_24 AC 62 ms
7,260 KB
testcase_25 AC 43 ms
6,732 KB
testcase_26 AC 36 ms
6,740 KB
testcase_27 AC 53 ms
6,720 KB
testcase_28 AC 44 ms
6,228 KB
testcase_29 AC 57 ms
7,000 KB
testcase_30 AC 49 ms
6,760 KB
testcase_31 AC 53 ms
6,724 KB
testcase_32 AC 44 ms
6,756 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import std.stdio, std.conv, std.functional, std.string;
import std.algorithm, std.array, std.container, std.range, std.typecons;
import std.numeric, std.math, std.random;
import core.bitop;

string FMT_F = "%.10f";

static string[] s_rd;
T RD(T = long)() { while(!s_rd.length) s_rd = readln.chomp.split; string res = s_rd[0]; s_rd.popFront; return res.to!T; }
string RDR()() { return readln.chomp; }
T[] ARR(T = long)(in string str, T fix = 0) { auto r = str.split.to!(T[]); r[] += fix; return r; }
size_t[] MAKE_IDX(alias less = "a < b", Range)(Range range) { auto idx = new size_t[](range.length); makeIndex!(less)(range, idx); return idx;}
size_t MIN_POS(alias less = "a < b", Range)(Range range) { auto r = minPos!(less)(range); return range.length - r.length; }

bool inside(T)(T x, T b, T e) { return x >= b && x < e; }
bool minimize(T)(ref T x, T y) { if (x > y) { x = y; return true; } else { return false; } }
bool maximize(T)(ref T x, T y) { if (x < y) { x = y; return true; } else { return false; } }

long mod = 10^^9 + 7;
void moda(ref long x, long y) { x = (x + y) % mod; }
void mods(ref long x, long y) { x = ((x + mod) - (y % mod)) % mod; }
void modm(ref long x, long y) { x = (x * y) % mod; }

void main()
{	
	auto N = RD;
	auto M = RD;
	auto ab = new long[2][](N);
	auto bests = new long[](N+1);
	foreach (i; 0..N)
	{
		auto A = RD;
		auto B = RD;
		ab[i] = [A, B];
		if (A > 0)
		{
			if (B > A)
			{
				bests[i+1] = A * (M-1) + B;
			}
			else
			{
				bests[i+1] = A * M;
			}
		}
		else if (A * M > B)
		{
			bests[i+1] = A * M;
		}
		else
		{
			bests[i+1] = B;
		}
		bests[i+1] += bests[i];
	}

	auto bests2 = new long[](N+1);
	foreach (i; 0..N)
	{
		bests2[i+1] = max(ab[i][0], ab[i][1]);
		bests2[i+1] += bests2[i];

	}
	auto bests22 = new long[](N+1);
	bests22[N] = bests2[N];
	foreach_reverse (i; 0..N)
	{
		bests22[i] = max(bests22[i+1], bests2[i]);

	}

	long ans;
	foreach (i; 0..N)
	{
		auto x = bests[i+1] + bests22[i+1] - bests2[i+1];
		ans = max(ans, x);
	}

	debug writeln(bests);
	debug writeln(bests2);

	writeln(ans);
	stdout.flush();
	debug readln();
}
0