Advertisement
milon34

find min total sum pos (1,1) to pos (n,m)--move right or down with path print.(dynamic programming)

Feb 21st, 2023
44
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 1.07 KB | None | 0 0
  1. #include <bits/stdc++.h>
  2.  
  3. using namespace std;
  4. #define ll long long int
  5. const int mx = 105;
  6. int dp[mx][mx];
  7. int n, m;
  8. int arr[mx][mx];
  9.  
  10. int mn_cost(int i, int j) {
  11.     if (i > n || j > m) {
  12.         return INT_MAX;
  13.     }
  14.     if (i == n and j == m) {
  15.         return arr[i][j];
  16.     }
  17.     if (dp[i][j] != -1) {
  18.         return dp[i][j];
  19.     }
  20.     return dp[i][j] = arr[i][j] + min(mn_cost(i, j + 1), mn_cost(i + 1, j));
  21. }
  22.  
  23. void path(int i, int j) {
  24.     cout << "(" << i << " " << j << ")" << endl;
  25.     if (i == n and j == m) {
  26.         return;
  27.     }
  28.     int right = mn_cost(i, j + 1);
  29.     int down = mn_cost(i + 1, j);
  30.     if (right <= down) {
  31.         path(i, j + 1);
  32.     } else {
  33.         path(i + 1, j);
  34.     }
  35. }
  36.  
  37. int main() {
  38.     ios_base::sync_with_stdio(false);
  39.     cin.tie(0);
  40.     cin >> n >> m;
  41.     memset(dp, -1, sizeof(dp));
  42.     for (int i = 1; i <= n; i++) {
  43.         for (int j = 1; j <= m; j++) {
  44.             cin >> arr[i][j];
  45.         }
  46.     }
  47.     cout << mn_cost(1, 1) << endl;
  48.     path(1, 1);
  49.     return 0;
  50. }
  51.  
  52.  
  53. input:
  54. 3 3
  55. 1 2 3
  56. 8 1 1
  57. 1 9 2
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement