Skip to content

Commit 43bb7e9

Browse files
committed
feat: add solutions to lc problem: No.0765.Couples Holding Hands
1 parent 0201d7b commit 43bb7e9

File tree

6 files changed

+404
-11
lines changed

6 files changed

+404
-11
lines changed

solution/0700-0799/0765.Couples Holding Hands/README.md

+177-2
Original file line numberDiff line numberDiff line change
@@ -35,27 +35,202 @@
3535
<li>可以保证<code>row</code> 是序列&nbsp;<code>0...len(row)-1</code>&nbsp;的一个全排列。</li>
3636
</ol>
3737

38-
3938
## 解法
4039

4140
<!-- 这里可写通用的实现逻辑 -->
4241

42+
坐错位置的情况与最少需要交换次数:
43+
44+
- 1 对情侣、2 个座位,不需要交换。
45+
- 2 对情侣、4 个座位,交换 1 次。
46+
- 3 对情侣、6 个座位。首先交换 1 次使得其中 1 对情侣坐在一起,剩下 2 对情侣、4 个座位。即需要交换 2 次。
47+
48+
以此类推,得到 `f(n)=n-1`。即:n 对情侣相互坐错位置,最少需要交换 `n-1` 次。
49+
50+
把相互坐错位置的情侣放在一组(同个集合),组内有 n 对情侣就需要 `n-1` 次交换。将 n 对情侣分为 K 组:N1,N2...Nk,有 N1+N2+...+Nk=n。需要交换的次数分别为:N1-1、N2-1、...、Nk-1,则总的最少交换次数为 N1-1+N2-1+...+Nk-1=N1+N2+...+Nk-k=n-k。问题转换为:n 对情侣,根据相互坐错位置的条件分组,共有多少个分组。并查集实现。
51+
52+
模板 1——朴素并查集:
53+
54+
```python
55+
# 初始化,p存储每个点的祖宗节点
56+
p = [i for i in range(n)]
57+
# 返回x的祖宗节点
58+
def find(x):
59+
if p[x] != x:
60+
# 路径压缩
61+
p[x] = find(p[x])
62+
return p[x]
63+
# 合并a和b所在的两个集合
64+
p[find(a)] = find(b)
65+
```
66+
67+
模板 2——维护 size 的并查集:
68+
69+
```python
70+
# 初始化,p存储每个点的祖宗节点,size只有当节点是祖宗节点时才有意义,表示祖宗节点所在集合中,点的数量
71+
p = [i for i in range(n)]
72+
size = [1] * n
73+
# 返回x的祖宗节点
74+
def find(x):
75+
if p[x] != x:
76+
# 路径压缩
77+
p[x] = find(p[x])
78+
return p[x]
79+
# 合并a和b所在的两个集合
80+
size[find(b)] += size[find(a)]
81+
p[find(a)] = find(b)
82+
```
83+
84+
模板 3——维护到祖宗节点距离的并查集:
85+
86+
```python
87+
# 初始化,p存储每个点的祖宗节点,d[x]存储x到p[x]的距离
88+
p = [i for i in range(n)]
89+
d = [0] * n
90+
# 返回x的祖宗节点
91+
def find(x):
92+
if p[x] != x:
93+
t = find(p[x])
94+
d[x] += d[p[x]]
95+
p[x] = t
96+
return p[x]
97+
# 合并a和b所在的两个集合
98+
p[find(a)] = find(b)
99+
d[find(a)] = dinstance
100+
```
101+
43102
<!-- tabs:start -->
44103

45104
### **Python3**
46105

47106
<!-- 这里可写当前语言的特殊实现逻辑 -->
48107

49108
```python
50-
109+
class Solution:
110+
def minSwapsCouples(self, row: List[int]) -> int:
111+
n = len(row) >> 1
112+
p = [i for i in range(n)]
113+
114+
def find(x):
115+
if p[x] != x:
116+
p[x] = find(p[x])
117+
return p[x]
118+
119+
for i in range(0, len(row), 2):
120+
a, b = row[i] >> 1, row[i + 1] >> 1
121+
p[find(a)] = find(b)
122+
123+
cnt = 0
124+
for i in range(n):
125+
if i == find(i):
126+
cnt += 1
127+
return n - cnt
51128
```
52129

53130
### **Java**
54131

55132
<!-- 这里可写当前语言的特殊实现逻辑 -->
56133

57134
```java
135+
class Solution {
136+
private int[] p;
137+
138+
public int minSwapsCouples(int[] row) {
139+
int n = row.length >> 1;
140+
p = new int[n];
141+
for (int i = 0; i < n; ++i) {
142+
p[i] = i;
143+
}
144+
for (int i = 0; i < row.length; i += 2) {
145+
int a = row[i] >> 1, b = row[i + 1] >> 1;
146+
p[find(a)] = find(b);
147+
}
148+
int cnt = 0;
149+
for (int i = 0; i < n; ++i) {
150+
if (i == find(i)) {
151+
++cnt;
152+
}
153+
}
154+
return n - cnt;
155+
}
156+
157+
private int find(int x) {
158+
if (p[x] != x) {
159+
p[x] = find(p[x]);
160+
}
161+
return p[x];
162+
}
163+
}
164+
```
165+
166+
### **C++**
167+
168+
```cpp
169+
class Solution {
170+
public:
171+
vector<int> p;
172+
173+
int minSwapsCouples(vector<int> &row) {
174+
int n = row.size() >> 1;
175+
p.resize(n);
176+
for (int i = 0; i < n; ++i)
177+
{
178+
p[i] = i;
179+
}
180+
for (int i = 0; i < row.size(); i += 2)
181+
{
182+
int a = row[i] >> 1, b = row[i + 1] >> 1;
183+
p[find(a)] = find(b);
184+
}
185+
int cnt = 0;
186+
for (int i = 0; i < n; ++i)
187+
{
188+
if (i == find(i))
189+
++cnt;
190+
}
191+
return n - cnt;
192+
}
193+
194+
int find(int x) {
195+
if (p[x] != x)
196+
{
197+
p[x] = find(p[x]);
198+
}
199+
return p[x];
200+
}
201+
};
202+
```
58203

204+
### **Go**
205+
206+
```go
207+
var p []int
208+
209+
func minSwapsCouples(row []int) int {
210+
n := len(row) >> 1
211+
p = make([]int, n)
212+
for i := 0; i < n; i++ {
213+
p[i] = i
214+
}
215+
for i := 0; i < len(row); i += 2 {
216+
a, b := row[i]>>1, row[i+1]>>1
217+
p[find(a)] = find(b)
218+
}
219+
cnt := 0
220+
for i := 0; i < n; i++ {
221+
if i == find(i) {
222+
cnt++
223+
}
224+
}
225+
return n - cnt
226+
}
227+
228+
func find(x int) int {
229+
if p[x] != x {
230+
p[x] = find(p[x])
231+
}
232+
return p[x]
233+
}
59234
```
60235

61236
### **...**

solution/0700-0799/0765.Couples Holding Hands/README_EN.md

+119-9
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<p>
88

9-
N couples sit in 2N seats arranged in a row and want to hold hands. We want to know the minimum number of swaps so that every couple is sitting side by side. A <i>swap</i> consists of choosing <b>any</b> two people, then they stand up and switch seats.
9+
N couples sit in 2N seats arranged in a row and want to hold hands. We want to know the minimum number of swaps so that every couple is sitting side by side. A <i>swap</i> consists of choosing <b>any</b> two people, then they stand up and switch seats.
1010

1111
</p><p>
1212

@@ -16,8 +16,6 @@ The people and seats are represented by an integer from <code>0</code> to <code>
1616

1717
The couples' initial seating is given by <code>row[i]</code> being the value of the person who is initially sitting in the i-th seat.
1818

19-
20-
2119
<p><b>Example 1:</b><br /><pre>
2220

2321
<b>Input:</b> row = [0, 2, 1, 3]
@@ -28,8 +26,6 @@ The couples' initial seating is given by <code>row[i]</code> being the value of
2826

2927
</pre></p>
3028

31-
32-
3329
<p><b>Example 2:</b><br /><pre>
3430

3531
<b>Input:</b> row = [3, 2, 0, 1]
@@ -40,13 +36,11 @@ The couples' initial seating is given by <code>row[i]</code> being the value of
4036

4137
</pre></p>
4238

43-
44-
4539
<p>
4640

4741
<b>Note:</b>
4842

49-
<ol>
43+
<ol>
5044

5145
<li> <code>len(row)</code> is even and in the range of <code>[4, 60]</code>.</li>
5246

@@ -61,13 +55,129 @@ The couples' initial seating is given by <code>row[i]</code> being the value of
6155
### **Python3**
6256

6357
```python
64-
58+
class Solution:
59+
def minSwapsCouples(self, row: List[int]) -> int:
60+
n = len(row) >> 1
61+
p = [i for i in range(n)]
62+
63+
def find(x):
64+
if p[x] != x:
65+
p[x] = find(p[x])
66+
return p[x]
67+
68+
for i in range(0, len(row), 2):
69+
a, b = row[i] >> 1, row[i + 1] >> 1
70+
p[find(a)] = find(b)
71+
72+
cnt = 0
73+
for i in range(n):
74+
if i == find(i):
75+
cnt += 1
76+
return n - cnt
6577
```
6678

6779
### **Java**
6880

6981
```java
82+
class Solution {
83+
private int[] p;
84+
85+
public int minSwapsCouples(int[] row) {
86+
int n = row.length >> 1;
87+
p = new int[n];
88+
for (int i = 0; i < n; ++i) {
89+
p[i] = i;
90+
}
91+
for (int i = 0; i < row.length; i += 2) {
92+
int a = row[i] >> 1, b = row[i + 1] >> 1;
93+
p[find(a)] = find(b);
94+
}
95+
int cnt = 0;
96+
for (int i = 0; i < n; ++i) {
97+
if (i == find(i)) {
98+
++cnt;
99+
}
100+
}
101+
return n - cnt;
102+
}
103+
104+
private int find(int x) {
105+
if (p[x] != x) {
106+
p[x] = find(p[x]);
107+
}
108+
return p[x];
109+
}
110+
}
111+
```
112+
113+
### **C++**
114+
115+
```cpp
116+
class Solution {
117+
public:
118+
vector<int> p;
119+
120+
int minSwapsCouples(vector<int> &row) {
121+
int n = row.size() >> 1;
122+
p.resize(n);
123+
for (int i = 0; i < n; ++i)
124+
{
125+
p[i] = i;
126+
}
127+
for (int i = 0; i < row.size(); i += 2)
128+
{
129+
int a = row[i] >> 1, b = row[i + 1] >> 1;
130+
p[find(a)] = find(b);
131+
}
132+
int cnt = 0;
133+
for (int i = 0; i < n; ++i)
134+
{
135+
if (i == find(i))
136+
++cnt;
137+
}
138+
return n - cnt;
139+
}
140+
141+
int find(int x) {
142+
if (p[x] != x)
143+
{
144+
p[x] = find(p[x]);
145+
}
146+
return p[x];
147+
}
148+
};
149+
```
70150

151+
### **Go**
152+
153+
```go
154+
var p []int
155+
156+
func minSwapsCouples(row []int) int {
157+
n := len(row) >> 1
158+
p = make([]int, n)
159+
for i := 0; i < n; i++ {
160+
p[i] = i
161+
}
162+
for i := 0; i < len(row); i += 2 {
163+
a, b := row[i]>>1, row[i+1]>>1
164+
p[find(a)] = find(b)
165+
}
166+
cnt := 0
167+
for i := 0; i < n; i++ {
168+
if i == find(i) {
169+
cnt++
170+
}
171+
}
172+
return n - cnt
173+
}
174+
175+
func find(x int) int {
176+
if p[x] != x {
177+
p[x] = find(p[x])
178+
}
179+
return p[x]
180+
}
71181
```
72182

73183
### **...**

0 commit comments

Comments
 (0)