During the NBA playoffs, we always arrange the rather strong team to play with the rather weak team, like make the rank 1 team play with the rank nthteam, which is a good strategy to make the contest more interesting. Now, you're given n teams, you need to output their final contest matches in the form of a string.
The n teams are given in the form of positive integers from 1 to n, which represents their initial rank. (Rank 1 is the strongest team and Rank n is the weakest team.) We'll use parentheses('(', ')') and commas(',') to represent the contest team pairing - parentheses('(' , ')') for pairing and 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.
Example:
Input: 8
Output: (((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))).
Note:
- The n is in range [2, 2^12].
- We ensure that the input n can be converted into the form 2^k, where k is a positive integer.
class Solution {
public String findContestMatch(int n) {
List<String> curr = new ArrayList<>();
List<String> next = new ArrayList<>();
for(int i = 1; i <= n; i++)
curr.add(String.valueOf(i));
while(curr.size() != 1) {
int i = 0;
int j = curr.size() - 1;
while(i < j) {
next.add("(" + curr.get(i) + "," + curr.get(j) + ")");
i++;
j--;
}
curr = next;
next = new ArrayList<>();
}
return curr.get(0);
}
}