-
Notifications
You must be signed in to change notification settings - Fork 1
/
410_Split_Array_Largest_Sum.cpp
64 lines (53 loc) · 1.59 KB
/
410_Split_Array_Largest_Sum.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
/**
* @brief The Solution class
Given an array which consists of non-negative integers and an integer m, you can split the array
into m non-empty continuous subarrays. Write an algorithm to minimize the largest sum among these m subarrays.
Note:
If n is the length of array, assume the following constraints are satisfied:
1 ≤ n ≤ 1000
1 ≤ m ≤ min(50, n)
Examples:
Input:
nums = [7,2,5,10,8]
m = 2
Output:
18
Explanation:
There are four ways to split nums into two subarrays.
The best way is to split it into [7,2,5] and [10,8],
where the largest sum among the two subarrays is only 18.
*/
/**
* 构造思路:
* 添加数组保存字母在某个位置之前和之后最近出现的下标
* 代码解释:
* int m_lowerInds[4][1001]; //保存字母在某个位置之后最近出现的下标,初始化为 0
* 举例:
* S = 'bccb'
*/
#include <iostream>
#include <vector>
using namespace std;
class Solution {
public:
int splitArray(vector<int>& nums, int m) {
}
};
int main()
{
vector<pair<pair<vector<int>, int>, int>> test;
{
int a[] = {7,2,5,10,8};
int asize = sizeof(a) / sizeof(a[0]);
test.emplace_back(make_pair(vector<int>(a, a+asize), 2), 18);
}
for(auto &it:test)
{
vector<int> &input = it.first.first;
Solution solu;
int ans = it.second;
int res = solu.splitArray(input, it.first.second);
cout << "result=" << res << "; answer=" << ans << "; match=" << (res == ans ? "Y" : "Nooooo") << endl;
}
return 0;
}