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 };
  • 相关阅读:
    Python 06--面向对象编程
    Python 05--常用模块学习
    6大排序算法,c#实现
    Git管理unity3d项目
    cordova crosswalk android 7.0 问题
    ionic/cordvoa 修改platform文件夹里的文件,build会覆盖问题
    webStorm Linux Ubuntu 中文搜狗输入问题
    Ionic android 底部tabs
    ionic 添加新module
    yii2 Nav::widget() 和 Menu::widget()
  • 原文地址:https://www.cnblogs.com/wujufengyun/p/7461771.html
Copyright © 2011-2022 走看看