-
Notifications
You must be signed in to change notification settings - Fork 222
/
Copy pathmaximum-perimeter-triangle.py
43 lines (30 loc) · 1.03 KB
/
maximum-perimeter-triangle.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
38
39
40
41
42
43
#!/bin/python3
import os
import sys
def is_valid(a, b, c):
if a < b+c and b < c+a and c < a+b:
return True
else:
return False
# Complete the maximumPerimeterTriangle function below.
def maximumPerimeterTriangle(sticks):
res = [-1]
sticks = sorted(sticks, reverse=True)
print(sticks)
for ind in range(2, len(sticks)):
for jnd in range(1, ind):
for knd in range(0, jnd):
print("checking {} {} {}".format(sticks[ind], sticks[jnd], sticks[knd]))
if is_valid(sticks[ind], sticks[jnd], sticks[knd]):
print("valid")
res = (sticks[ind], sticks[jnd], sticks[knd])
return res
return res
if __name__ == '__main__':
fptr = open(os.environ['OUTPUT_PATH'], 'w')
n = int(input())
sticks = list(map(int, input().rstrip().split()))
result = maximumPerimeterTriangle(sticks)
fptr.write(' '.join(map(str, result)))
fptr.write('\n')
fptr.close()