結果
問題 | No.325 マンハッタン距離2 |
ユーザー | te-sh |
提出日時 | 2017-06-27 18:31:55 |
言語 | D (dmd 2.106.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,302 bytes |
コンパイル時間 | 980 ms |
コンパイル使用メモリ | 100,616 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-06-12 20:34:48 |
合計ジャッジ時間 | 1,860 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,812 KB |
testcase_01 | AC | 1 ms
6,944 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 | WA | - |
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 | 2 ms
6,940 KB |
testcase_11 | WA | - |
testcase_12 | AC | 1 ms
6,940 KB |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | AC | 1 ms
6,944 KB |
testcase_16 | AC | 1 ms
6,944 KB |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | AC | 1 ms
6,940 KB |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | AC | 1 ms
6,944 KB |
testcase_24 | AC | 1 ms
6,940 KB |
testcase_25 | AC | 1 ms
6,940 KB |
testcase_26 | WA | - |
ソースコード
import std.algorithm, std.conv, std.range, std.stdio, std.string; void main() { auto rd = readln.split.to!(long[]), x1 = rd[0], y1 = rd[1], x2 = rd[2], y2 = rd[3], d = rd[4]; auto r = 0L; if (x2 >= 0 && y2 >= 0) r += calc(max(0, x1), max(0, y1), x2, y2, d); if (x1 <= 0 && y2 >= 0) r += calc(max(0, -x2), max(0, y1), -x1, y2, d); if (x1 <= 0 && y1 <= 0) r += calc(max(0, -x2), max(0, -y2), -x1, -y1, d); if (x2 >= 0 && y1 <= 0) r += calc(max(0, x1), max(0, -y2), x2, -y1, d); if (x1 <= 0 && x2 >= 0) r -= min(y2, d) - max(y1, -d) + 1; if (y1 <= 0 && y2 >= 0) r -= min(x2, d) - max(x1, -d) + 1; if (x1 <= 0 && x2 >= 0 && y1 <= 0 && y2 >= 0) --r; writeln(r); } auto calc(long x1, long y1, long x2, long y2, long d) { if (x1 + y1 > d) return 0; if (x2 + y2 <= d) return (x2 - x1 + 1) * (y2 - y1 + 1); if (x2 == 0 && y2 == 0) return 1; if (x2 == 0) return min(y2, d) - y1 + 1; if (y2 == 0) return min(x2, d) - x1 + 1; auto r = 0L; if (x1 + y2 > d) { y2 = d - x1; } else if (x1 + y2 < d) { r += (d - y2 - x1) * (y2 - y1 + 1); x1 = d - y2; } if (x2 + y1 > d) { x2 = d - y1; } else if (x2 + y1 > d) { r += (d - x2 - y1) * (x2 - x1 + 1); y1 = d - x2; } return r + (x2 - x1 + 1) * (x2 - x1 + 2) / 2; }