Josif_tepe

Untitled

Nov 20th, 2025
231
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 1.46 KB | None | 0 0
  1. #include <iostream>
  2. #include <vector>
  3. using namespace std;
  4. const int maxn = 1005;
  5.  
  6. int dp[maxn][maxn][2];
  7. int main()
  8. {
  9.     ios_base::sync_with_stdio(false);
  10.     int n, m;
  11.     cin >> n >> m;
  12.    
  13.     vector<vector<int>> mat(n, vector<int>(m));
  14.    
  15.     for(int i = 0; i < n; i++) {
  16.         for(int j = 0; j < m; j++) {
  17.             cin >> mat[i][j];
  18.         }
  19.     }
  20.    
  21.     for(int i = 0; i < n; i++) {
  22.         int max1 = 0, max2 = 0, idx = 0;
  23.         for(int j = 0; j < m; j++) {
  24.             dp[i][j][0] = mat[i][j];
  25.             dp[i][j][1] = dp[i][j][0];
  26.             dp[1][0][0] = 0;
  27.  
  28.             if(i > 0) {
  29.                 dp[i][j][0] += dp[i - 1][j][1];
  30.             }
  31.            
  32.             if(dp[i][j][0] > max1) {
  33.                 max2 = max1;
  34.                 max1 = dp[i][j][0];
  35.                 idx = j;
  36.             }
  37.             else if(dp[i][j][0] > max2) {
  38.                 max2 = dp[i][j][0];
  39.             }
  40.         }
  41.        
  42.         for(int j = 0; j < m; j++) {
  43.             if(i == 0) {
  44.                 if(j != 0) {
  45.                     dp[0][j][1] += dp[0][0][0];
  46.                 }
  47.             }
  48.             else {
  49.                 if(j == idx) {
  50.                     dp[i][j][1] += max2;
  51.                 }
  52.                 else {
  53.                     dp[i][j][1] += max1;
  54.                 }
  55.             }
  56.         }
  57.     }
  58.    
  59.     cout << max(dp[n - 1][m - 1][0], dp[n - 1][m - 1][1]) << endl;
  60.    
  61.    
  62.     return 0;
  63. }
  64.  
Advertisement
Add Comment
Please, Sign In to add comment