結果
問題 | No.325 マンハッタン距離2 |
ユーザー | kimiyuki |
提出日時 | 2016-06-28 21:34:56 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,584 bytes |
コンパイル時間 | 231 ms |
コンパイル使用メモリ | 12,800 KB |
実行使用メモリ | 11,136 KB |
最終ジャッジ日時 | 2024-10-11 22:05:16 |
合計ジャッジ時間 | 1,862 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 30 ms
11,008 KB |
testcase_01 | AC | 30 ms
10,880 KB |
testcase_02 | AC | 31 ms
11,008 KB |
testcase_03 | AC | 30 ms
11,008 KB |
testcase_04 | AC | 30 ms
11,008 KB |
testcase_05 | AC | 30 ms
11,008 KB |
testcase_06 | AC | 29 ms
11,008 KB |
testcase_07 | AC | 30 ms
11,008 KB |
testcase_08 | AC | 30 ms
11,136 KB |
testcase_09 | AC | 30 ms
11,008 KB |
testcase_10 | AC | 30 ms
11,008 KB |
testcase_11 | AC | 32 ms
10,880 KB |
testcase_12 | AC | 31 ms
11,008 KB |
testcase_13 | AC | 31 ms
10,880 KB |
testcase_14 | AC | 30 ms
11,008 KB |
testcase_15 | AC | 30 ms
11,008 KB |
testcase_16 | AC | 29 ms
11,136 KB |
testcase_17 | WA | - |
testcase_18 | AC | 30 ms
11,008 KB |
testcase_19 | AC | 31 ms
11,008 KB |
testcase_20 | AC | 30 ms
11,008 KB |
testcase_21 | AC | 30 ms
11,008 KB |
testcase_22 | AC | 30 ms
11,136 KB |
testcase_23 | AC | 29 ms
11,008 KB |
testcase_24 | AC | 30 ms
10,880 KB |
testcase_25 | AC | 30 ms
10,880 KB |
testcase_26 | WA | - |
ソースコード
#!/usr/bin/env python3 # functions def f(x, y, d): # [0, x) * [0, y) assert 0 <= x assert 0 <= y if x <= 1 or y <= 1: return 0 d = min(d, x + y - 2) ans = (d+1)*(d+2)//2 if x <= d: dx = d-x+1 ans -= dx*(dx+1)//2 if y <= d: dy = d-y+1 ans -= dy*(dy+1)//2 ans -= min(x, d+1) ans -= min(y, d+1) ans += 1 return ans def g(x1, x2, y, d): assert y >= 0 if x1 <= 0 <= x2: return min(d, y) else: return 0 def h(x1, x2, y1, y2, d): if x1 <= 0 <= x2 and y1 <= 0 <= y2: return 1 else: return 0 # input x1, y1, x2, y2, d = map(int,input().split()) assert x1 < x2 assert y1 < y2 if x2 <= 0: x1, x2 = - x2, - x1 if y2 <= 0: y1, y2 = - y2, - y1 if x1 <= 0: x1, y1 = y1, x1 x2, y2 = y2, x2 # calc ans = 0 if x1 <= 0: assert x1 <= 0 <= x2 assert y1 <= 0 <= y2 ans += f(abs(x1)+1, abs(y1)+1, d) ans += f(abs(x1)+1, abs(y2)+1, d) ans += f(abs(x2)+1, abs(y1)+1, d) ans += f(abs(x2)+1, abs(y2)+1, d) elif y1 <= 0: assert 0 <= x1 < x2 assert y1 <= 0 <= y2 ans -= f(x1, abs(y1), d) ans += f(x2+1, abs(y1), d) ans -= f(x1, abs(y2)+1, d) ans += f(x2+1, abs(y2)+1, d) else: assert 0 <= x1 < x2 assert 0 <= y1 < y2 ans += f(x1, y1, d) ans -= f(x1, y2+1, d) ans -= f(x2+1, y1, d) ans += f(x2+1, y2+1, d) ans += g(x1, x2, abs(y1), d) ans += g(x1, x2, abs(y2), d) ans += g(y1, y2, abs(x1), d) ans += g(y1, y2, abs(x2), d) ans += h(x1, x2, y1, y2, d) # output print(ans)