-
Notifications
You must be signed in to change notification settings - Fork 0
/
two_chips_2.py
37 lines (27 loc) · 1.05 KB
/
two_chips_2.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
"""
Вариант two_chips оптимизированный.
"""
from typing import List, Tuple, Optional
def two_sum(arr: List[int], target_sum: int) -> Optional[Tuple[int, int]]:
# Создаём вспомогательную структуру данных с быстрым поиском элемента.
previous = set()
for elem in arr:
residual = target_sum - elem
if residual in previous:
return elem, residual
else:
previous.add(elem)
# Если ничего не нашлось в цикле, значит, нужной пары элементов в массиве нет.
return None
def read_input() -> Tuple[List[int], int]:
n = int(input())
arr = list(map(int, input().strip().split()))
target_sum = int(input())
return arr, target_sum
def print_result(result: Optional[Tuple[int, int]]) -> None:
if result is None:
print(None)
else:
print(" ".join(map(str, result)))
arr, target_sum = read_input()
print_result(two_sum(arr, target_sum))