結果

問題 No.325 マンハッタン距離2
ユーザー kimiyukikimiyuki
提出日時 2016-06-28 22:40:16
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 32 ms / 1,000 ms
コード長 1,822 bytes
コンパイル時間 253 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 11,136 KB
最終ジャッジ日時 2024-04-20 03:06:18
合計ジャッジ時間 1,918 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
11,008 KB
testcase_01 AC 32 ms
11,008 KB
testcase_02 AC 32 ms
11,008 KB
testcase_03 AC 31 ms
11,008 KB
testcase_04 AC 30 ms
11,008 KB
testcase_05 AC 32 ms
11,008 KB
testcase_06 AC 32 ms
11,008 KB
testcase_07 AC 32 ms
10,880 KB
testcase_08 AC 32 ms
11,008 KB
testcase_09 AC 32 ms
11,008 KB
testcase_10 AC 32 ms
11,008 KB
testcase_11 AC 31 ms
11,008 KB
testcase_12 AC 31 ms
11,008 KB
testcase_13 AC 31 ms
11,008 KB
testcase_14 AC 30 ms
11,008 KB
testcase_15 AC 31 ms
11,008 KB
testcase_16 AC 31 ms
11,136 KB
testcase_17 AC 31 ms
11,008 KB
testcase_18 AC 30 ms
11,008 KB
testcase_19 AC 31 ms
11,008 KB
testcase_20 AC 31 ms
11,008 KB
testcase_21 AC 31 ms
11,008 KB
testcase_22 AC 30 ms
10,880 KB
testcase_23 AC 31 ms
11,008 KB
testcase_24 AC 31 ms
10,880 KB
testcase_25 AC 31 ms
11,136 KB
testcase_26 AC 31 ms
11,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3

# functions
def f(x, y, d): # [0, x) * [0, y)
    assert 0 <= x
    assert 0 <= y
    if x == 0 or y == 0:
        return 0
    x -= 1
    y -= 1
    d = min(d, x + y)
    ans = (d+1)*(d+2)//2
    if x <= d:
        dx = d-x
        ans -= dx*(dx+1)//2
    if y <= d:
        dy = d-y
        ans -= dy*(dy+1)//2
    ans -= min(x,d)+1
    ans -= min(y,d)+1
    ans += 1
    return ans
def g(x1, x2, y1, y2, d):
    if x1 <= 0 <= x2:
        if 0 <= y1 <= y2:
            if y1 <= d:
                ans = min(d, y2) - min(d, y1) + 1
                if y1 == 0:
                    ans -= 1
                return ans
            else:
                return 0
        elif y1 <= 0 <= y2:
            return min(d, abs(y1)) + min(d, y2)
        assert False
    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)+1, d)
    ans += f(x2+1, abs(y1)+1, 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, y1, y2, d)
ans += g(y1, y2, x1, x2, d)
ans += h(x1, x2, y1, y2, d)

# output
print(ans)
0