사용자 도구

사이트 도구


ps:problems:boj:2381

최대 거리

ps
링크acmicpc.net/…
출처BOJ
문제 번호2381
문제명최대 거리
레벨골드 3
분류

기하학

시간복잡도O(n)
인풋사이즈n<=50,000
사용한 언어Python 3.11
제출기록43688KB / 88ms
최고기록88ms
해결날짜2024/11/19

풀이

코드

"""Solution code for "BOJ 2381. 최대 거리".

- Problem link: https://www.acmicpc.net/problem/2381
- Solution link: http://www.teferi.net/ps/problems/boj/2381

Tags: [geometry]
"""

import sys


def farthest_points_pair_manhattan(points):
    sums = [x + y for x, y in points]
    max_sum, min_sum = max(sums), min(sums)
    diffs = [x - y for x, y in points]
    max_diff, min_diff = max(diffs), min(diffs)
    return max(max_sum - min_sum, max_diff - min_diff)


def main():
    N = int(sys.stdin.readline())
    points = [[int(x) for x in sys.stdin.readline().split()] for _ in range(N)]

    print(farthest_points_pair_manhattan(points))


if __name__ == '__main__':
    main()

토론

댓글을 입력하세요:
S G V J Z
 
ps/problems/boj/2381.txt · 마지막으로 수정됨: 2024/11/19 08:40 저자 teferi