forked from haoel/leetcode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
MaximumNumberOfConsecutiveValuesYouCanMake.cpp
70 lines (65 loc) · 1.97 KB
/
MaximumNumberOfConsecutiveValuesYouCanMake.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
// Source : https://leetcode.com/problems/maximum-number-of-consecutive-values-you-can-make/submissions/
// Author : Hao Chen
// Date : 2021-03-22
/*****************************************************************************************************
*
* You are given an integer array coins of length n which represents the n coins that you own. The
* value of the i^th coin is coins[i]. You can make some value x if you can choose some of your n
* coins such that their values sum up to x.
*
* Return the maximum number of consecutive integer values that you can make with your coins starting
* from and including 0.
*
* Note that you may have multiple coins of the same value.
*
* Example 1:
*
* Input: coins = [1,3]
* Output: 2
* Explanation: You can make the following values:
* - 0: take []
* - 1: take [1]
* You can make 2 consecutive integer values starting from 0.
*
* Example 2:
*
* Input: coins = [1,1,1,4]
* Output: 8
* Explanation: You can make the following values:
* - 0: take []
* - 1: take [1]
* - 2: take [1,1]
* - 3: take [1,1,1]
* - 4: take [4]
* - 5: take [4,1]
* - 6: take [4,1,1]
* - 7: take [4,1,1,1]
* You can make 8 consecutive integer values starting from 0.
*
* Example 3:
*
* Input: nums = [1,4,10,3,1]
* Output: 20
*
* Constraints:
*
* coins.length == n
* 1 <= n <= 4 * 10^4
* 1 <= coins[i] <= 4 * 10^4
******************************************************************************************************/
class Solution {
public:
int getMaximumConsecutive(vector<int>& coins) {
int maxNum = 1; //at least, we can make 0
//sort the coins
sort(coins.begin(), coins.end());
//If we can make X, it means we can make [1,2,3,4,...X]
//So, if Y <= X, then we can make [Y+1, Y+2, Y+3.... Y+X]
//It meas we can make X+Y
for (auto& c : coins) {
if (c > maxNum) break;
maxNum += c;
}
return maxNum;
}
};