During the NBA playoffs, we always set the rather strong team to play with the rather weak team, like making the rank 1 team play with the rank nth team, which is a good strategy to make the contest more interesting.
Given n teams, return their final contest matches in the form of a string.
The n teams are labeled from 1 to n, which represents their initial rank (i.e., Rank 1 is the strongest team and Rank n is the weakest team).
We will use parentheses '(', and ')' and commas ',' to represent the contest team pairing. We use the parentheses for pairing and the commas for partition. During the pairing process in each round, you always need to follow the strategy of making the rather strong one pair with the rather weak one.
Input: n =4Output: "((1,4),(2,3))"Explanation:
In the first round, we pair the team 1 and 4, the teams 2 and 3 together, as we need to make the strong team and weak team together.And we got(1,4),(2,3).In the second round, the winners of(1,4) and (2,3) need to play again to generate the final winner, so you need to add the paratheses outside them.And we got the finalanswer((1,4),(2,3)).
Example 2:
1
2
3
4
5
6
7
Input: n =8Output: "(((1,8),(4,5)),((2,7),(3,6)))"Explanation:
First round:(1,8),(2,7),(3,6),(4,5)Second round:((1,8),(4,5)),((2,7),(3,6))Third round:(((1,8),(4,5)),((2,7),(3,6)))Since the third round will generate the final winner, you need to output the answer(((1,8),(4,5)),((2,7),(3,6))).
The problem is about simulating the tournament pairing process. In each round, the strongest and weakest teams are paired, and the winners move to the next round. We keep pairing until one match remains, building the string representation recursively or iteratively.
classSolution {
public String findContestMatch(int n) {
List<String> ans =new ArrayList<>();
for (int i = 1; i <= n; i++) ans.add(String.valueOf(i));
while (ans.size() > 1) {
List<String> nxt =new ArrayList<>();
int sz = ans.size();
for (int i = 0; i < sz/2; i++)
nxt.add("("+ ans.get(i) +","+ ans.get(sz-1-i) +")");
ans = nxt;
}
return ans.get(0);
}
}
1
2
3
4
5
6
7
8
9
10
11
12
classSolution {
funfindContestMatch(n: Int): String {
var ans = MutableList(n) { (it+1).toString() }
while (ans.size > 1) {
val nxt = MutableList(ans.size/2) { "" }
for (i in0 until ans.size/2)
nxt[i] = "(" + ans[i] + "," + ans[ans.size-1-i] + ")" ans = nxt
}
return ans[0]
}
}
1
2
3
4
5
6
classSolution:
deffindContestMatch(self, n: int) -> str:
ans = [str(i) for i in range(1, n+1)]
while len(ans) >1:
ans = [f"({ans[i]},{ans[-1-i]})"for i in range(len(ans)//2)]
return ans[0]
1
2
3
4
5
6
7
8
9
10
11
12
13
14
impl Solution {
pubfnfind_contest_match(n: i32) -> String {
letmut ans: Vec<String>= (1..=n).map(|x| x.to_string()).collect();
while ans.len() >1 {
let sz = ans.len();
letmut nxt = Vec::with_capacity(sz/2);
for i in0..sz/2 {
nxt.push(format!("({},{} )", ans[i], ans[sz-1-i]));
}
ans = nxt;
}
ans[0].replace(" ", "")
}
}