結果

問題 No.2612 Close the Distance
ユーザー MitarushiMitarushi
提出日時 2024-01-06 13:20:12
言語 Nim
(2.0.2)
結果
AC  
実行時間 1,213 ms / 3,000 ms
コード長 1,555 bytes
コンパイル時間 3,612 ms
コンパイル使用メモリ 66,884 KB
実行使用メモリ 47,576 KB
最終ジャッジ日時 2024-09-28 05:14:08
合計ジャッジ時間 23,241 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 1 ms
6,944 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 777 ms
47,548 KB
testcase_07 AC 630 ms
47,464 KB
testcase_08 AC 731 ms
47,560 KB
testcase_09 AC 760 ms
47,516 KB
testcase_10 AC 767 ms
47,544 KB
testcase_11 AC 791 ms
47,548 KB
testcase_12 AC 791 ms
45,532 KB
testcase_13 AC 808 ms
47,552 KB
testcase_14 AC 643 ms
47,576 KB
testcase_15 AC 749 ms
44,240 KB
testcase_16 AC 1,213 ms
47,420 KB
testcase_17 AC 1,083 ms
45,464 KB
testcase_18 AC 1,066 ms
47,428 KB
testcase_19 AC 1,091 ms
47,468 KB
testcase_20 AC 1,009 ms
47,348 KB
testcase_21 AC 1,201 ms
47,296 KB
testcase_22 AC 963 ms
47,384 KB
testcase_23 AC 1,034 ms
47,352 KB
testcase_24 AC 930 ms
47,452 KB
testcase_25 AC 1,085 ms
47,376 KB
testcase_26 AC 2 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import strutils, sequtils

iterator readInt(): int {.closure.} =
    while true:
        let line = stdin.readLine.split.map(parseInt)
        for x in line:
            yield x

var input = readInt

let n = input()
var 
    x = newSeq[int64]()
    y = newSeq[int64]()
for _ in 0..<n:
    let (a, b) = (input(), input())
    x.add(a + b)
    y.add(b - a)
let xy = zip(x, y)

iterator exclude_box(xy: openArray[(int64, int64)], box_x, box_y, a: int64): (int64, int64) =
    for (x, y) in xy:
        if not (box_x <= x and x <= box_x + a and box_y <= y and y <= box_y + a):
            yield (x, y)

proc is_not_more_than(xy: openArray[(int64, int64)], a, k: int64): bool =
    if xy.len <= k:
        return true
    if k == 0:
        return false

    let 
        x_min = xy.mapIt(it[0]).min
        x_max = xy.mapIt(it[0]).max
        y_min = xy.mapIt(it[1]).min
        y_max = xy.mapIt(it[1]).max

    if is_not_more_than(exclude_box(xy, x_min, y_min, a).toSeq, a, k - 1):
        return true
    if k >= 2 and is_not_more_than(exclude_box(xy, x_min, y_max - a, a).toSeq, a, k - 1):
        return true
    if k >= 3 and is_not_more_than(exclude_box(xy, x_max - a, y_min, a).toSeq, a, k - 1):
        return true
    if k >= 3 and is_not_more_than(exclude_box(xy, x_max - a, y_max - a, a).toSeq, a, k - 1):
        return true
    false

let max_a = max(x.max - x.min, y.max - y.min)
var 
    ng = -1i64
    ok = max_a
while ok - ng > 1:
    let m = (ok + ng) div 2
    if is_not_more_than(xy, m, 3):
        ok = m
    else:
        ng = m
echo ok
0