Advertisement
milon34

Minimum Cost Path,,we can go (i,j-1), (i, j+1), (i-1, j), (i+1, j). (Dijkstra's Algorithm)

May 13th, 2023
199
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 1.62 KB | None | 0 0
  1. problem link::https://practice.geeksforgeeks.org/problems/minimum-cost-path3833/1
  2.  
  3. #include <bits/stdc++.h>
  4. using namespace std;
  5. #define ll long long int
  6. int n;
  7. const int mx = 505;
  8. vector<vector<int>> grid;
  9. int dis[mx][mx];
  10. int dir_x[4] = {1, -1, 0, 0};
  11. int dir_y[4] = {0, 0, 1, -1};
  12.  
  13. void solve(int x, int y) {
  14.     for (int i = 0; i < n; i++) {
  15.         for (int j = 0; j < n; j++) {
  16.             dis[i][j] = 1e5;
  17.         }
  18.     }
  19.     priority_queue<pair<int, pair<int, int>>, vector<pair<int, pair<int, int>>>, greater<pair<int, pair<int, int>>>> pr;
  20.     pr.push({grid[0][0], {0, 0}});
  21.     dis[0][0] = grid[0][0];
  22.     while (!pr.empty()) {
  23.         pair<int, int> node = pr.top().second;
  24.         int cost = pr.top().first;
  25.         pr.pop();
  26.         if (dis[node.first][node.second] < cost)continue;
  27.         for (int m = 0; m < 4; m++) {
  28.             int x1 = node.first + dir_x[m];
  29.             int y1 = node.second + dir_y[m];
  30.             if (x1 >= 0 && x1 < n && y1 >= 0 && y1 < n && cost + grid[x1][y1] < dis[x1][y1]) {
  31.                 dis[x1][y1] = cost + grid[x1][y1];
  32.                 pr.push({cost + grid[x1][y1], {x1, y1}});
  33.             }
  34.         }
  35.     }
  36. }
  37.  
  38. int main() {
  39.     ios_base::sync_with_stdio(false);
  40.     cin.tie(0);
  41.     cin >> n;
  42.     for (int i = 0; i < n; i++) {
  43.         vector<int> vec;
  44.         for (int j = 0; j < n; j++) {
  45.             int x;
  46.             cin >> x;
  47.             vec.push_back(x);
  48.         }
  49.         grid.push_back(vec);
  50.     }
  51.     solve(0, 0);
  52.     cout << dis[n - 1][n - 1] << endl;
  53.     return 0;
  54. }
  55.  
  56. struct min {
  57.     volatile int s = 0;
  58.     filesystem::file_time_type ;
  59.  
  60. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement