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 | cf2cea7e417a9d2bc946587d4a6ce48d6d4403d8 (patch) | |
tree | 6d08eea35a9f1cd9a66da48fbc2e5e88f742100e /leetcode/week/260/2.cpp | |
parent | 450e391b6feb6e6dcefd07a3b85dfd23b69fa283 (diff) | |
download | solutions-cf2cea7e417a9d2bc946587d4a6ce48d6d4403d8.tar.gz solutions-cf2cea7e417a9d2bc946587d4a6ce48d6d4403d8.tar.bz2 solutions-cf2cea7e417a9d2bc946587d4a6ce48d6d4403d8.zip |
...
Diffstat (limited to 'leetcode/week/260/2.cpp')
-rw-r--r-- | leetcode/week/260/2.cpp | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/leetcode/week/260/2.cpp b/leetcode/week/260/2.cpp new file mode 100644 index 0000000..86c4cf2 --- /dev/null +++ b/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 |