結果

問題 No.2897 2集合間距離
ユーザー tassei903tassei903
提出日時 2024-09-20 22:12:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 868 ms / 3,500 ms
コード長 987 bytes
コンパイル時間 257 ms
コンパイル使用メモリ 82,308 KB
実行使用メモリ 225,952 KB
最終ジャッジ日時 2024-09-20 22:13:13
合計ジャッジ時間 11,781 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 236 ms
113,156 KB
testcase_01 AC 218 ms
115,072 KB
testcase_02 AC 212 ms
114,448 KB
testcase_03 AC 245 ms
123,536 KB
testcase_04 AC 218 ms
112,692 KB
testcase_05 AC 246 ms
114,176 KB
testcase_06 AC 216 ms
113,272 KB
testcase_07 AC 253 ms
111,068 KB
testcase_08 AC 245 ms
114,096 KB
testcase_09 AC 249 ms
115,456 KB
testcase_10 AC 280 ms
130,004 KB
testcase_11 AC 286 ms
130,688 KB
testcase_12 AC 313 ms
120,848 KB
testcase_13 AC 257 ms
113,904 KB
testcase_14 AC 251 ms
103,680 KB
testcase_15 AC 294 ms
114,728 KB
testcase_16 AC 692 ms
221,828 KB
testcase_17 AC 868 ms
222,044 KB
testcase_18 AC 670 ms
221,268 KB
testcase_19 AC 806 ms
221,372 KB
testcase_20 AC 764 ms
222,532 KB
testcase_21 AC 676 ms
221,932 KB
testcase_22 AC 794 ms
225,952 KB
testcase_23 AC 818 ms
210,212 KB
権限があれば一括ダウンロードができます

ソースコード

diff #


import sys
input = lambda :sys.stdin.readline()[:-1]
ni = lambda :int(input())
na = lambda :list(map(int,input().split()))
yes = lambda :print("yes");Yes = lambda :print("Yes");YES = lambda : print("YES")
no = lambda :print("no");No = lambda :print("No");NO = lambda : print("NO")
######################################################################


inf = float('inf')
    
H = W = 1010
n = ni()
p = [na() for _ in range(n)]
p = [(x+1, y+1) for x, y in p]
m = ni()
q = [na() for _ in range(m)]
q = [(x+1, y+1) for x, y in q]

ans = inf

for _ in range(4):
    p = [(H - 1 - y, x) for x, y in p]
    q = [(H - 1 - y, x) for x, y in q]

    A = [[-inf]*(W+1) for _ in range(H+1)]

    for x, y in p:
        A[x][y] = x + y
    
    for i in range(H):
        for j in range(W):
            A[i+1][j+1] = max(A[i+1][j+1], A[i][j+1], A[i+1][j])

    # for i in range(H):
    #     print(*A[i])
    # print()

    for x, y in q:
        ans = min(ans, x + y - A[x][y])
    

print(ans)
0