-
Notifications
You must be signed in to change notification settings - Fork 1
/
741_Cherry_Pickup.cpp
84 lines (71 loc) · 2.74 KB
/
741_Cherry_Pickup.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
74
75
76
77
78
79
80
81
82
83
84
/**
* @brief The Solution class
In a N x N grid representing a field of cherries, each cell is one of three possible integers.
0 means the cell is empty, so you can pass through;
1 means the cell contains a cherry, that you can pick up and pass through;
-1 means the cell contains a thorn that blocks your way.
Your task is to collect maximum number of cherries possible by following the rules below:
Starting at the position (0, 0) and reaching (N-1, N-1) by moving right or down through valid path cells (cells with value 0 or 1);
After reaching (N-1, N-1), returning to (0, 0) by moving left or up through valid path cells;
When passing through a path cell containing a cherry, you pick it up and the cell becomes an empty cell (0);
If there is no valid path between (0, 0) and (N-1, N-1), then no cherries can be collected.
Example 1:
Input: grid =
[[0, 1, -1],
[1, 0, -1],
[1, 1, 1]]
Output: 5
Explanation:
The player started at (0, 0) and went down, down, right right to reach (2, 2).
4 cherries were picked up during this single trip, and the matrix becomes [[0,1,-1],[0,0,-1],[0,0,0]].
Then, the player went left, up, up, left to return home, picking up one more cherry.
The total number of cherries picked up is 5, and this is the maximum possible.
Note:
grid is an N by N 2D array, with 1 <= N <= 50.
Each grid[i][j] is an integer in the set {-1, 0, 1}.
It is guaranteed that grid[0][0] and grid[N-1][N-1] are not -1.
*/
/**
* 构造思路:
* 添加数组保存字母在某个位置之前和之后最近出现的下标
* 代码解释:
* int m_lowerInds[4][1001]; //保存字母在某个位置之后最近出现的下标,初始化为 0
* 举例:
* S = 'bccb'
*/
#include <iostream>
#include <vector>
#include <map>
#include <iterator>
using namespace std;
class Solution {
public:
int cherryPickup(vector<vector<int>>& grid) {
}
};
int main()
{
vector<pair<vector<vector<int>>, int> > test;
{
int a1[] = {0, 1, -1};
int a1size = sizeof(a1) / sizeof(a1[0]);
int a2[] = {1, 0, -1};
int a2size = sizeof(a2) / sizeof(a2[0]);
int a3[] = {1, 1, 1};
int a3size = sizeof(a3) / sizeof(a3[0]);
vector<vector<int>> grid;
grid.emplace_back(vector<int>(a1, a1+a1size));
grid.emplace_back(vector<int>(a2, a2+a2size));
grid.emplace_back(vector<int>(a3, a3+a3size));
test.emplace_back(grid, 5);
}
for(auto &it:test)
{
vector<vector<int>> &input = it.first;
Solution solu;
int ans = it.second;
int res = solu.cherryPickup(input);
cout << "match=" << (res == ans ? "Y" : "Nooooo") << endl;
}
return 0;
}