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()