ps | |
---|---|
링크 | acmicpc.net/… |
출처 | BOJ |
문제 번호 | 20366 |
문제명 | 같이 눈사람 만들래? |
레벨 | 골드 3 |
시간복잡도 | O(n^2logn) |
인풋사이즈 | n<=600 |
사용한 언어 | Python |
제출기록 | 93896KB / 536ms |
최고기록 | 424ms |
해결날짜 | 2022/04/05 |
"""Solution code for "BOJ 20366. 같이 눈사람 만들래?".
- Problem link: https://www.acmicpc.net/problem/20366
- Solution link: http://www.teferi.net/ps/problems/boj/20366
"""
import itertools
def main():
N = int(input()) # pylint: disable=unused-variable
H = [int(x) for x in input().split()]
snowmans = []
for i, h_i in enumerate(H):
snowmans.extend((h_i + h_j, {i, j}) for j, h_j in enumerate(H[:i]))
answer = min(
(h2 - h1)
for (h1, ind1), (h2, ind2) in itertools.pairwise(sorted(snowmans))
if not (ind1 & ind2))
print(answer)
if __name__ == '__main__':
main()