結果

問題 No.2897 2集合間距離
ユーザー mkawa2mkawa2
提出日時 2024-09-20 22:40:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 465 ms / 3,500 ms
コード長 1,947 bytes
コンパイル時間 229 ms
コンパイル使用メモリ 82,256 KB
実行使用メモリ 95,104 KB
最終ジャッジ日時 2024-09-20 22:40:07
合計ジャッジ時間 5,630 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
59,264 KB
testcase_01 AC 45 ms
59,264 KB
testcase_02 AC 48 ms
59,136 KB
testcase_03 AC 48 ms
59,392 KB
testcase_04 AC 44 ms
58,880 KB
testcase_05 AC 45 ms
59,392 KB
testcase_06 AC 44 ms
59,136 KB
testcase_07 AC 46 ms
59,008 KB
testcase_08 AC 44 ms
59,136 KB
testcase_09 AC 43 ms
59,136 KB
testcase_10 AC 49 ms
61,184 KB
testcase_11 AC 55 ms
63,488 KB
testcase_12 AC 77 ms
71,680 KB
testcase_13 AC 89 ms
76,416 KB
testcase_14 AC 126 ms
77,440 KB
testcase_15 AC 155 ms
77,568 KB
testcase_16 AC 456 ms
93,880 KB
testcase_17 AC 424 ms
94,592 KB
testcase_18 AC 465 ms
93,752 KB
testcase_19 AC 412 ms
95,104 KB
testcase_20 AC 421 ms
94,204 KB
testcase_21 AC 433 ms
93,696 KB
testcase_22 AC 398 ms
94,080 KB
testcase_23 AC 416 ms
94,204 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

sys.setrecursionlimit(200005)
# sys.set_int_max_str_digits(200005)
int1 = lambda x: int(x)-1
pDB = lambda *x: print(*x, end="\n", file=sys.stderr)
p2D = lambda x: print(*x, sep="\n", end="\n\n", file=sys.stderr)
def II(): return int(sys.stdin.readline())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def LI1(): return list(map(int1, sys.stdin.readline().split()))
def LLI1(rows_number): return [LI1() for _ in range(rows_number)]
def SI(): return sys.stdin.readline().rstrip()

dij = [(0, 1), (-1, 0), (0, -1), (1, 0)]
# dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)]
# inf = -1-(-1 << 31)
inf = -1-(-1 << 62)

# md = 10**9+7
md = 998244353

class Bit:
    def __init__(self, op, e, n):
        self.op = op
        self.e = e
        self.n = n+1
        self.table = [e() for _ in range(self.n)]

    def update(self, i, x):
        i += 1
        while i < self.n:
            self.table[i] = self.op(self.table[i], x)
            i += i & -i

    # [0,i]
    def prod(self, i):
        i += 1
        res = self.e()
        while i > 0:
            res = self.op(res,self.table[i])
            i -= i & -i
        return res

x2y=[[] for _ in range(1000)]
s2t=[[] for _ in range(1000)]
n=II()
for _ in range(n):
    x,y=LI()
    x2y[x].append(y)
m=II()
for _ in range(m):
    s,t=LI()
    s2t[s].append(t)

xybit1=Bit(min,lambda:inf,1005)
xybit2=Bit(min,lambda:inf,1005)
stbit1=Bit(min,lambda:inf,1005)
stbit2=Bit(min,lambda:inf,1005)

ans=inf
for x in range(1000):
    for y in x2y[x]:
        xybit1.update(1000-y,-x+y)
        xybit2.update(y,-x-y)
    for y in s2t[x]:
        stbit1.update(1000-y,-x+y)
        stbit2.update(y,-x-y)
    for y in x2y[x]:
        ans=min(ans,x-y+stbit1.prod(1000-y),x+y+stbit2.prod(y))
    for y in s2t[x]:
        ans=min(ans,x-y+xybit1.prod(1000-y),x+y+xybit2.prod(y))

print(ans)
0