結果
問題 | No.818 Dinner time |
ユーザー | daut-dlang |
提出日時 | 2019-04-19 22:14:06 |
言語 | D (dmd 2.106.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,063 bytes |
コンパイル時間 | 641 ms |
コンパイル使用メモリ | 111,184 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-06-22 00:49:41 |
合計ジャッジ時間 | 2,321 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,812 KB |
testcase_01 | AC | 1 ms
6,940 KB |
testcase_02 | AC | 1 ms
6,940 KB |
testcase_03 | AC | 1 ms
6,940 KB |
testcase_04 | AC | 1 ms
6,944 KB |
testcase_05 | AC | 1 ms
6,940 KB |
testcase_06 | AC | 1 ms
6,940 KB |
testcase_07 | AC | 1 ms
6,940 KB |
testcase_08 | AC | 1 ms
6,944 KB |
testcase_09 | WA | - |
testcase_10 | AC | 1 ms
6,944 KB |
testcase_11 | WA | - |
testcase_12 | AC | 1 ms
6,940 KB |
testcase_13 | AC | 1 ms
6,944 KB |
testcase_14 | AC | 2 ms
6,940 KB |
testcase_15 | AC | 1 ms
6,940 KB |
testcase_16 | AC | 1 ms
6,940 KB |
testcase_17 | AC | 47 ms
6,944 KB |
testcase_18 | AC | 34 ms
6,940 KB |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | AC | 32 ms
6,940 KB |
testcase_23 | AC | 36 ms
6,940 KB |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | AC | 31 ms
6,944 KB |
testcase_27 | WA | - |
testcase_28 | AC | 37 ms
6,940 KB |
testcase_29 | AC | 49 ms
6,940 KB |
testcase_30 | AC | 42 ms
6,940 KB |
testcase_31 | AC | 45 ms
6,944 KB |
testcase_32 | AC | 38 ms
6,940 KB |
ソースコード
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); long best2; long bestPos2; foreach (i; 0..N) { bests2[i+1] = max(ab[i][0], ab[i][1]); bests2[i+1] += bests2[i]; if (bests2[i+1] >= best2) { best2 = bests2[i+1]; bestPos2 = i; } } long ans; foreach (i; 0..bestPos2+1) { auto x = bests[i+1] + best2 - bests2[i+1]; ans = max(ans, x); } debug writeln(bests); debug writeln(bests2); writeln(ans); stdout.flush(); debug readln(); }