zoukankan      html  css  js  c++  java
  • LeetCode 544. Output Contest Matches

    原题链接在这里:https://leetcode.com/problems/output-contest-matches/description/

    题目:

    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 nth team, 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 1:

    Input: 2
    Output: (1,2)
    Explanation: 
    Initially, we have the team 1 and the team 2, placed like: 1,2.
    Then we pair the team (1,2) together with '(', ')' and ',', which is the final answer.

    Example 2:

    Input: 4
    Output: ((1,4),(2,3))
    Explanation: 
    In the first round, we pair the team 1 and 4, the team 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 final answer ((1,4),(2,3)).

    Example 3:

    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:

    1. The n is in range [2, 212].
    2. We ensure that the input n can be converted into the form 2k, where k is a positive integer.

    题解:

    所有数字convert成string 放入queue中. 

    Keep polling first and last element in the queue and pair them and put into a next queue.

    When it is empty, switch next queue and queue. 

    Keep this operation until queue size is 1.

    Time Complexity: O(n). 数字convert成string放入res中用时O(n). 之后res每次size减半, 所以是n + n/2 + n/4 + ... + 1 < 2*n = O(n).

    Space: O(n).

    AC Java:

     1 class Solution {
     2     public String findContestMatch(int n) {
     3         if(n<2 || n%2!=0){
     4             return "";
     5         }
     6         
     7         LinkedList<String> que = new LinkedList<>();
     8         for(int i = 1; i<=n; i++){
     9             que.add(""+i);
    10         }
    11         
    12         while(que.size()>1){
    13             LinkedList<String> nextQue = new LinkedList<>();
    14             while(!que.isEmpty()){
    15                 String head = que.pollFirst();
    16                 String last = que.pollLast();
    17                 nextQue.add("("+head+","+last+")");
    18             }
    19             
    20             que = nextQue;
    21         }
    22         
    23         return que.peek();
    24     }
    25 }
  • 相关阅读:
    【LeetCode-动态规划】编辑代价
    【C++】使用istringstream分割字符串
    【LeetCode-字符串】简化路径
    【LeetCode-字符串】简化路径
    【LeetCode-并查集】朋友圈
    【LeetCode-背包】目标和
    【LeetCode-动态规划】分割等和子集
    The code of method _jspService(HttpServletRequest, HttpServletResponse) is exceeding the 65535 bytes
    【错误解决】本地计算机上的mysql服务启动停止后,某些服务在未由其他服务或程序使用时将自动停止
    MySQL解压版安装配置详解
  • 原文地址:https://www.cnblogs.com/Dylan-Java-NYC/p/7574385.html
Copyright © 2011-2022 走看看