Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
李楚霏
/
leetCode_Solution_Record
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Members
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
321f684e
authored
Oct 04, 2020
by
李楚霏
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
work6 minimum_path_sum
parent
4b584bef
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
27 additions
and
0 deletions
+27
-0
70works/week6/work/minimum_path_sum.cpp
+27
-0
No files found.
70works/week6/work/minimum_path_sum.cpp
0 → 100644
View file @
321f684e
class
Solution
{
public
:
int
minPathSum
(
vector
<
vector
<
int
>>&
grid
)
{
if
(
grid
.
size
()
==
0
||
grid
[
0
].
size
()
==
0
)
return
0
;
int
row
=
grid
.
size
();
int
col
=
grid
[
0
].
size
();
auto
dp
=
vector
<
vector
<
int
>
>
(
row
,
vector
<
int
>
(
col
));
dp
[
0
][
0
]
=
grid
[
0
][
0
];
for
(
int
i
=
1
;
i
<
row
;
i
++
)
{
dp
[
i
][
0
]
=
dp
[
i
-
1
][
0
]
+
grid
[
i
][
0
];
}
for
(
int
j
=
1
;
j
<
col
;
j
++
)
{
dp
[
0
][
j
]
=
dp
[
0
][
j
-
1
]
+
grid
[
0
][
j
];
}
for
(
int
i
=
1
;
i
<
row
;
i
++
)
{
for
(
int
j
=
1
;
j
<
col
;
j
++
)
{
dp
[
i
][
j
]
=
min
(
dp
[
i
-
1
][
j
],
dp
[
i
][
j
-
1
])
+
grid
[
i
][
j
];
}
}
return
dp
[
row
-
1
][
col
-
1
];
}
};
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment