-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path2130.maximum-twin-sum-of-a-linked-list.py
99 lines (94 loc) · 2.27 KB
/
2130.maximum-twin-sum-of-a-linked-list.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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
#
# @lc app=leetcode id=2130 lang=python3
#
# [2130] Maximum Twin Sum of a Linked List
#
# https://leetcode.com/problems/maximum-twin-sum-of-a-linked-list/description/
#
# algorithms
# Medium (81.26%)
# Likes: 3681
# Dislikes: 114
# Total Accepted: 380.7K
# Total Submissions: 468.4K
# Testcase Example: '[5,4,2,1]'
#
# In a linked list of size n, where n is even, the i^th node (0-indexed) of the
# linked list is known as the twin of the (n-1-i)^th node, if 0 <= i <= (n / 2)
# - 1.
#
#
# For example, if n = 4, then node 0 is the twin of node 3, and node 1 is the
# twin of node 2. These are the only nodes with twins for n = 4.
#
#
# The twin sum is defined as the sum of a node and its twin.
#
# Given the head of a linked list with even length, return the maximum twin sum
# of the linked list.
#
#
# Example 1:
#
#
# Input: head = [5,4,2,1]
# Output: 6
# Explanation:
# Nodes 0 and 1 are the twins of nodes 3 and 2, respectively. All have twin sum
# = 6.
# There are no other nodes with twins in the linked list.
# Thus, the maximum twin sum of the linked list is 6.
#
#
# Example 2:
#
#
# Input: head = [4,2,2,3]
# Output: 7
# Explanation:
# The nodes with twins present in this linked list are:
# - Node 0 is the twin of node 3 having a twin sum of 4 + 3 = 7.
# - Node 1 is the twin of node 2 having a twin sum of 2 + 2 = 4.
# Thus, the maximum twin sum of the linked list is max(7, 4) = 7.
#
#
# Example 3:
#
#
# Input: head = [1,100000]
# Output: 100001
# Explanation:
# There is only one node with a twin in the linked list having twin sum of 1 +
# 100000 = 100001.
#
#
#
# Constraints:
#
#
# The number of nodes in the list is an even integer in the range [2,
# 10^5].
# 1 <= Node.val <= 10^5
#
#
#
# @lc code=start
# Definition for singly-linked list.
# class ListNode:
# def __init__(self, val=0, next=None):
# self.val = val
# self.next = next
class Solution:
def pairSum(self, head: Optional[ListNode]) -> int:
values = []
# 연결 리스트를 배열로 변환
while head:
values.append(head.val)
head = head.next
# 투 포인터 사용
max_sum = 0
n = len(values)
for i in range(n // 2):
max_sum = max(max_sum, values[i] + values[n - i - 1])
return max_sum
# @lc code=end