Skip to content

Commit

Permalink
Update 019.md
Browse files Browse the repository at this point in the history
  • Loading branch information
Reputeless committed Feb 27, 2023
1 parent 4b31c60 commit fd4cb87
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion 019.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ int main()
std::cin >> a;
}

// 区間 DP
// 区間 DP
std::vector<std::vector<int>> dp((2 * N), std::vector<int>(2 * N, INF));

for (int i = 0; i < (2 * N - 1); ++i)
Expand Down

0 comments on commit fd4cb87

Please sign in to comment.