結果
問題 | No.1997 X Lighting |
ユーザー | MasKoaTS |
提出日時 | 2022-03-11 17:51:35 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
RE
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 980 bytes |
コンパイル時間 | 222 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 10,752 KB |
最終ジャッジ日時 | 2024-11-17 03:19:22 |
合計ジャッジ時間 | 2,557 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | RE | - |
testcase_28 | RE | - |
testcase_29 | RE | - |
testcase_30 | RE | - |
testcase_31 | RE | - |
testcase_32 | RE | - |
ソースコード
import sys input = sys.stdin.readline def main(): INF = 10 ** 18 N = int(input()) P = [] for _ in [0] * N: x, y = map(int, input().split()) P.append((x + y, x - y)) max_x = max_y = -INF min_x = min_y = INF for x, y in P: if(max_x < x): max_x = x if(max_y < y): max_y = y if(min_x > x): min_x = x if(min_y > y): min_y = y ok = 2 * 10 ** 9 + 1 ng = -1 while(ok - ng > 1): k = ok + ng f = False block = [[0] * 2 for _ in [0] * 2] for x, y in P: if((x < max_x - k and x > min_x + k) or (y < max_y - k and y > min_y + k)): break if(x < max_x - k and y < max_y - k): block[0][0] = 1 if(x > min_x + k and y < max_y - k): block[1][0] = 1 if(x < max_x - k and y > min_y + k): block[0][1] = 1 if(x > min_x + k and y > min_y + k): block[1][1] = 1 else: if((block[0][0] | block[1][1]) == 0 or (block[0][1] | block[1][0]) == 0): f = True if(f): ok = k // 2 else: ng = k // 2 print(ok) main()