結果

問題 No.180 美しいWhitespace (2)
ユーザー Mao-betaMao-beta
提出日時 2024-04-02 12:07:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 573 ms / 5,000 ms
コード長 2,301 bytes
コンパイル時間 391 ms
コンパイル使用メモリ 82,384 KB
実行使用メモリ 239,568 KB
最終ジャッジ日時 2024-09-30 23:09:23
合計ジャッジ時間 6,175 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
56,476 KB
testcase_01 AC 46 ms
56,848 KB
testcase_02 AC 48 ms
56,712 KB
testcase_03 AC 50 ms
57,220 KB
testcase_04 AC 74 ms
77,848 KB
testcase_05 AC 86 ms
86,020 KB
testcase_06 AC 114 ms
98,624 KB
testcase_07 AC 147 ms
118,180 KB
testcase_08 AC 175 ms
129,672 KB
testcase_09 AC 110 ms
77,572 KB
testcase_10 AC 114 ms
76,880 KB
testcase_11 AC 573 ms
238,848 KB
testcase_12 AC 562 ms
239,568 KB
testcase_13 AC 502 ms
238,228 KB
testcase_14 AC 298 ms
163,484 KB
testcase_15 AC 168 ms
98,612 KB
testcase_16 AC 140 ms
86,816 KB
testcase_17 AC 116 ms
78,992 KB
testcase_18 AC 106 ms
76,848 KB
testcase_19 AC 120 ms
77,104 KB
testcase_20 AC 45 ms
57,236 KB
testcase_21 AC 46 ms
57,396 KB
testcase_22 AC 46 ms
56,860 KB
testcase_23 AC 44 ms
57,200 KB
testcase_24 AC 45 ms
56,352 KB
testcase_25 AC 45 ms
58,448 KB
testcase_26 AC 45 ms
57,400 KB
testcase_27 AC 45 ms
56,032 KB
testcase_28 AC 44 ms
57,432 KB
testcase_29 AC 45 ms
56,904 KB
testcase_30 AC 95 ms
71,504 KB
testcase_31 AC 96 ms
71,568 KB
testcase_32 AC 76 ms
71,316 KB
testcase_33 AC 86 ms
76,904 KB
testcase_34 AC 88 ms
77,356 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import math
import bisect
from heapq import heapify, heappop, heappush
from collections import deque, defaultdict, Counter
from functools import lru_cache
from itertools import accumulate, combinations, permutations, product

sys.setrecursionlimit(1000000)
MOD = 10 ** 9 + 7
MOD99 = 998244353

input = lambda: sys.stdin.readline().strip()
NI = lambda: int(input())
NMI = lambda: map(int, input().split())
NLI = lambda: list(NMI())
SI = lambda: input()
SMI = lambda: input().split()
SLI = lambda: list(SMI())
EI = lambda m: [NLI() for _ in range(m)]



from collections import deque

class ConvexHullTrick():
    """
    追加する直線の傾きが単調減少、計算する x 座標が単調増加するときに、
    直線(y = ai*x + bi)の追加とmin_i f(x)を計算 O(N+Q)
    """
    def __init__(self):
        self.deq = deque()

    def check(self, f1, f2, f3):
        return (f2[0] - f1[0]) * (f3[1] - f2[1]) >= (f2[1] - f1[1]) * (f3[0] - f2[0])

    def f(self, f1, x):
        return f1[0] * x + f1[1]

    # add f_i(x)=a*x+b
    def add_line(self, a, b):
        f1 = (a, b)
        while len(self.deq) >= 2 and self.check(self.deq[-2], self.deq[-1], f1):
            self.deq.pop()
        self.deq.append(f1)

    # min f_i(x)
    def query(self, x):
        while len(self.deq) >= 2 and self.f(self.deq[0], x) >= self.f(self.deq[1], x):
            self.deq.popleft()
        return self.f(self.deq[0], x)


def main():
    N = NI()
    AB = EI(N)
    X = set()
    for i in range(N):
        for j in range(i+1, N):
            ai, bi = AB[i]
            aj, bj = AB[j]
            if bi == bj:
                continue
            # ai-aj + (bi-bj)x = 0
            x = (aj-ai) // (bi-bj)
            X.add(x-1)
            X.add(x)
            X.add(x+1)
    X = sorted(list(X))
    CHTmax = ConvexHullTrick()
    CHTmin = ConvexHullTrick()
    AB.sort(key=lambda x: -x[1])
    for a, b in AB:
        CHTmin.add_line(b, a)
    AB.sort(key=lambda x: x[1])
    for a, b in AB:
        CHTmax.add_line(-b, -a)

    m = 10**20
    ans = 1
    for x in X:
        if x <= 0:
            continue
        res = -CHTmax.query(x) - CHTmin.query(x)
        if res < m:
            ans = x
            m = min(m, res)
    print(ans)


if __name__ == "__main__":
    main()
0