-
Notifications
You must be signed in to change notification settings - Fork 481
/
0174.cpp
37 lines (35 loc) · 1.06 KB
/
0174.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
#include <vector>
using namespace std;
static int x = []() {std::ios::sync_with_stdio(false); cin.tie(0); return 0; }();
class Solution
{
public:
int calculateMinimumHP(vector<vector<int>>& dungeon)
{
int row = dungeon.size(), col = dungeon[0].size();
vector<vector<int>> mem(row, vector<int>(col, 0));
for (int i = row-1; i > -1; --i)
{
for (int j = col-1; j > -1; --j)
{
if (i == row-1 and j == col-1)
{
mem[i][j] = max(0, -dungeon[i][j]);
}
else if (i == row-1)
{
mem[i][j] = max(0, mem[i][j+1] - dungeon[i][j]);
}
else if (j == col-1)
{
mem[i][j] = max(0, mem[i+1][j] - dungeon[i][j]);
}
else
{
mem[i][j] = max(0, min(mem[i+1][j], mem[i][j+1]) - dungeon[i][j]);
}
}
}
return mem[0][0] + 1;
}
};