diff options
author | crupest <crupest@outlook.com> | 2021-09-26 12:50:45 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2021-09-26 12:50:45 +0800 |
commit | 1f9626144c4856d0a7d93b125175879d5a6685d4 (patch) | |
tree | 9dead909b644b68598396ff78490c11a067f5e07 /works/solutions/leetcode/week/260/2.cpp | |
parent | 8eb02362780883d16acc31c51225f6e9196405f2 (diff) | |
download | crupest-1f9626144c4856d0a7d93b125175879d5a6685d4.tar.gz crupest-1f9626144c4856d0a7d93b125175879d5a6685d4.tar.bz2 crupest-1f9626144c4856d0a7d93b125175879d5a6685d4.zip |
import(solutions): ...
Diffstat (limited to 'works/solutions/leetcode/week/260/2.cpp')
-rw-r--r-- | works/solutions/leetcode/week/260/2.cpp | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/works/solutions/leetcode/week/260/2.cpp b/works/solutions/leetcode/week/260/2.cpp new file mode 100644 index 0000000..86c4cf2 --- /dev/null +++ b/works/solutions/leetcode/week/260/2.cpp @@ -0,0 +1,29 @@ +#include <vector> + +using std::vector; + +#include <iterator> +#include <limits> +#include <numeric> + +class Solution { +public: + long long gridGame(vector<vector<int>> &grid) { + int s = grid.front().size(); + std::vector<long long> row0(grid[0].cbegin(), grid[0].cend()); + std::vector<long long> row1(grid[1].cbegin(), grid[1].cend()); + std::vector<long long> ps0, ps1; + + std::partial_sum(row0.cbegin(), row0.cend(), std::back_inserter(ps0)); + std::partial_sum(row1.cbegin(), row1.cend(), std::back_inserter(ps1)); + + long long r = std::numeric_limits<long long>::max(); + + for (int i = 0; i < s; i++) { + long long c = std::max(ps0.back() - ps0[i], i ? ps1[i - 1] : 0); + r = std::min(r, c); + } + + return r; + } +};
\ No newline at end of file |