diff options
author | crupest <crupest@outlook.com> | 2021-03-02 22:20:12 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2021-03-02 22:20:12 +0800 |
commit | b312fa43308e3fb24730127e6c063624e7648ff2 (patch) | |
tree | 4391b091e076dd26feb6511f76d6548cd4da8e24 | |
parent | f8d4dd6131c30de4e8843e77baed8d07378e436c (diff) | |
download | crupest-b312fa43308e3fb24730127e6c063624e7648ff2.tar.gz crupest-b312fa43308e3fb24730127e6c063624e7648ff2.tar.bz2 crupest-b312fa43308e3fb24730127e6c063624e7648ff2.zip |
import(solutions): Add acwing 1212.
-rw-r--r-- | works/solutions/acwing/1212.cpp | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/works/solutions/acwing/1212.cpp b/works/solutions/acwing/1212.cpp new file mode 100644 index 0000000..e60e993 --- /dev/null +++ b/works/solutions/acwing/1212.cpp @@ -0,0 +1,46 @@ +#include <iostream>
+
+int n, m, k;
+int v[51][51];
+int f[51][51][14][14]; // row col count max
+const int MOD = 1000000007;
+
+int main() {
+ std::ios_base::sync_with_stdio(false);
+ std::cin >> n >> m >> k;
+
+ for (int i = 1; i <= n; i++)
+ for (int j = 1; j <= m; j++) {
+ std::cin >> v[i][j];
+ v[i][j]++;
+ }
+
+ f[1][1][0][0] = 1;
+ f[1][1][1][v[1][1]] = 1;
+
+ for (int i = 1; i <= n; i++) {
+ for (int j = 1; j <= m; j++) {
+ for (int c = 0; c <= k; c++) {
+ for (int m = 0; m <= 13; m++) {
+ f[i][j][c][m] = (f[i][j][c][m] + f[i][j - 1][c][m]) % MOD;
+ f[i][j][c][m] = (f[i][j][c][m] + f[i - 1][j][c][m]) % MOD;
+
+ if (c && v[i][j] == m) {
+ for (int max = 0; max < v[i][j]; max++) {
+ f[i][j][c][m] = (f[i][j][c][m] + f[i][j - 1][c - 1][max]) % MOD;
+ f[i][j][c][m] = (f[i][j][c][m] + f[i - 1][j][c - 1][max]) % MOD;
+ }
+ }
+ }
+ }
+ }
+ }
+
+ int result = 0;
+ for (int i = 1; i <= 13; i++)
+ result = (result + f[n][m][k][i]) % MOD;
+
+ std::cout << result;
+
+ return 0;
+}
|