結果
問題 | No.957 植林 |
ユーザー | nebukuro09 |
提出日時 | 2019-12-19 23:14:55 |
言語 | D (dmd 2.106.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 931 bytes |
コンパイル時間 | 899 ms |
コンパイル使用メモリ | 126,836 KB |
実行使用メモリ | 7,204 KB |
最終ジャッジ日時 | 2024-06-22 03:54:41 |
合計ジャッジ時間 | 2,920 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,816 KB |
testcase_01 | AC | 1 ms
6,944 KB |
testcase_02 | AC | 1 ms
6,940 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | AC | 13 ms
6,944 KB |
testcase_06 | AC | 12 ms
6,940 KB |
testcase_07 | WA | - |
testcase_08 | AC | 13 ms
6,944 KB |
testcase_09 | AC | 14 ms
6,940 KB |
testcase_10 | AC | 14 ms
6,944 KB |
testcase_11 | AC | 13 ms
6,940 KB |
testcase_12 | WA | - |
testcase_13 | AC | 12 ms
6,940 KB |
testcase_14 | AC | 16 ms
6,944 KB |
testcase_15 | AC | 13 ms
6,944 KB |
testcase_16 | AC | 12 ms
6,944 KB |
testcase_17 | AC | 14 ms
6,940 KB |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | WA | - |
testcase_37 | WA | - |
testcase_38 | WA | - |
testcase_39 | WA | - |
testcase_40 | WA | - |
testcase_41 | AC | 10 ms
6,940 KB |
testcase_42 | AC | 9 ms
6,940 KB |
testcase_43 | AC | 22 ms
7,148 KB |
testcase_44 | AC | 22 ms
7,204 KB |
testcase_45 | AC | 1 ms
6,944 KB |
testcase_46 | AC | 1 ms
6,940 KB |
testcase_47 | AC | 1 ms
6,940 KB |
ソースコード
import std.stdio, std.array, std.string, std.conv, std.algorithm; import std.typecons, std.range, std.random, std.math, std.container; import std.numeric, std.bigint, core.bitop, core.stdc.stdio; void main() { auto s = readln.split.map!(to!int); auto H = s[0]; auto W = s[1]; auto A = iota(H).map!(_ => readln.split.map!(to!long).array).array; auto R = readln.split.map!(to!long).array; auto C = readln.split.map!(to!long).array; foreach (i; 0..H) A[i] ~= R[i] - A[i].sum; A.sort!"a.back > b.back"; long csum = 0; foreach (j; 0..W) foreach (i; 0..H) C[j] -= A[i][j]; foreach (j; 0..W) csum += max(0L, C[j]); auto ans = csum; auto tmp = csum; foreach (i; 0..H) { tmp += A[i].back; foreach (j; 0..W) { C[j] += A[i][j]; tmp += max(0L, C[j] - max(C[j] - A[i][j], 0L)); } ans = max(ans, tmp); } ans.writeln; }