zoukankan      html  css  js  c++  java
  • 553. Optimal Division

    Given a list of positive integers, the adjacent integers will perform the float division. For example, [2,3,4] -> 2 / 3 / 4.

    However, you can add any number of parenthesis at any position to change the priority of operations. You should find out how to add parenthesis to get the maximum result, and return the corresponding expression in string format. Your expression should NOT contain redundant parenthesis.

    Example:

    Input: [1000,100,10,2]
    Output: "1000/(100/10/2)"
    Explanation:
    1000/(100/10/2) = 1000/((100/10)/2) = 200
    However, the bold parenthesis in "1000/((100/10)/2)" are redundant, 
    since they don't influence the operation priority. So you should return "1000/(100/10/2)". Other cases: 1000/(100/10)/2 = 50 1000/(100/(10/2)) = 50 1000/100/10/2 = 0.5 1000/100/(10/2) = 2

    Note:

    1. The length of the input array is [1, 10].
    2. Elements in the given array will be in range [2, 1000].
    3. There is only one optimal division for each test case.
       1 class Solution {
       2 public:
       3     string optimalDivision(vector<int>& nums) {
       4         string ans;
       5         if (!nums.size()) return ans;
       6         ans = to_string(nums[0]);
       7         if (nums.size() == 1) return ans;
       8         if (nums.size() == 2) return ans + "/" + to_string(nums[1]);
       9         ans += "/(" + to_string(nums[1]);
      10         for (int i = 2; i < nums.size(); ++i)
      11             ans += "/" + to_string(nums[i]);
      12         ans += ")";
      13         return ans;
      14     }
      15 };
  • 相关阅读:
    第六课 3. 外部表
    第六课 2 物化视图
    第六课 1.当有数据文件被误删除时如何恢复
    SQL常用(通用)操作_01
    SQL规范
    C# foreach和for比较
    C# 装箱与拆箱
    C#面向对象笔记
    winform防止输入法对扫码的干扰
    GIT安装包备用地址
  • 原文地址:https://www.cnblogs.com/wujufengyun/p/7461771.html
Copyright © 2011-2022 走看看