-
Notifications
You must be signed in to change notification settings - Fork 0
/
553.最优除法.cpp
74 lines (71 loc) · 2 KB
/
553.最优除法.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
/*
* @lc app=leetcode.cn id=553 lang=cpp
*
* [553] 最优除法
*
* https://leetcode-cn.com/problems/optimal-division/description/
*
* algorithms
* Medium (54.39%)
* Likes: 35
* Dislikes: 0
* Total Accepted: 2K
* Total Submissions: 3.6K
* Testcase Example: '[1000,100,10,2]'
*
* 给定一组正整数,相邻的整数之间将会进行浮点除法操作。例如, [2,3,4] -> 2 / 3 / 4 。
*
*
* 但是,你可以在任意位置添加任意数目的括号,来改变算数的优先级。你需要找出怎么添加括号,才能得到最大的结果,并且返回相应的字符串格式的表达式。你的表达式不应该含有冗余的括号。
*
* 示例:
*
*
* 输入: [1000,100,10,2]
* 输出: "1000/(100/10/2)"
* 解释:
* 1000/(100/10/2) = 1000/((100/10)/2) = 200
* 但是,以下加粗的括号 "1000/((100/10)/2)" 是冗余的,
* 因为他们并不影响操作的优先级,所以你需要返回 "1000/(100/10/2)"。
*
* 其他用例:
* 1000/(100/10)/2 = 50
* 1000/(100/(10/2)) = 50
* 1000/100/10/2 = 0.5
* 1000/100/(10/2) = 2
*
*
* 说明:
*
*
* 输入数组的长度在 [1, 10] 之间。
* 数组中每个元素的大小都在 [2, 1000] 之间。
* 每个测试用例只有一个最优除法解。
*
* (1)暴力法,分成两部分,左边取最大右边最小
* (2)根据除法的规律a/b/c/d的最优解为a/(b/(c/d))
*
*/
// @lc code=start
#include <vector>
#include <string>
#include <iostream>
using namespace std;
class Solution {
public:
string optimalDivision(vector<int>& nums) {
int len = nums.size();
if(len == 1){
return to_string(nums[0]);
}else if(len == 2){
return to_string(nums[0]) + "/" + to_string(nums[1]);
}
string res = to_string(nums[0]) + "/(" + to_string(nums[1]);
for(int i = 2; i < len - 1; ++i){
res += "/" + to_string(nums[i]);
}
res += "/" + to_string(nums[len - 1]) + ")";
return res;
}
};
// @lc code=end