Advertisement
milon34

bfs/dfs_problem_list

Jan 13th, 2023 (edited)
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 5.48 KB | None | 0 0
  1. //https://vjudge.net/problem/uva-762////find path destination
  2. #include <bits/stdc++.h>
  3. using namespace std;
  4. #define ll long long int
  5. map<string, vector<string>> adj;
  6. map<string, int> level;
  7. map<string, string> root;
  8. void bfs(string source) {
  9.   level.clear();
  10.   level[source] = 1;
  11.   queue<string> que;
  12.   que.push(source);
  13.   while (!que.empty()) {
  14.     string peek = que.front();
  15.     que.pop();
  16.     for (auto u : adj[peek]) {
  17.       if (level[u] == 0) {
  18.         que.push(u);
  19.         level[u] = level[peek] + 1;
  20.         root[u] = peek;
  21.       }
  22.     }
  23.   }
  24. }
  25. int main() {
  26.   ios_base::sync_with_stdio(false);
  27.   cin.tie(0);
  28.   cout.tie(0);
  29.   int n;
  30.   bool ok=false;
  31.   while (cin >> n) {
  32.     if ( ok ) cout << endl;
  33.     ok = true;
  34.     adj.clear();
  35.     root.clear();
  36.     for (int i = 0; i < n; i++) {
  37.       string s1, s2;
  38.       cin >> s1 >> s2;
  39.       adj[s1].push_back(s2);
  40.       adj[s2].push_back(s1);
  41.     }
  42.     string source, des;
  43.     cin >> source >> des;
  44.     bfs(source);
  45.     if (level[des] == 0) {
  46.       cout << "No route"
  47.            << "\n";
  48.       continue;
  49.     }
  50.     vector<pair<string, string>> res;
  51.     while (!root[des].empty()) {
  52.       res.push_back({root[des], des});
  53.       des = root[des];
  54.     }
  55.     reverse(res.begin(), res.end());
  56.     for (auto v : res) {
  57.       cout << v.first << " " << v.second << "\n";
  58.     }
  59.   }
  60.   return 0;
  61. }
  62.  
  63.  
  64.  
  65. problem link:https://vjudge.net/problem/UVA-10004////Bicolor or not
  66. #include <bits/stdc++.h>
  67. using namespace std;
  68. #define ll long long int
  69. const int mx = 205;
  70. vector<int> adj[mx];
  71. int color[mx];
  72. bool isBi(int source) {
  73.   memset(color, -1, sizeof(color));
  74.   color[mx] = 1;
  75.   queue<int> que;
  76.   que.push(source);
  77.   while (!que.empty()) {
  78.     int peek = que.front();
  79.     que.pop();
  80.     for (auto u : adj[peek]) {
  81.       if (color[u] == -1) {
  82.         que.push(u);
  83.         if (color[peek] == 1) {
  84.           color[u] = 2;
  85.         } else {
  86.           color[u] = 1;
  87.         }
  88.       } else if (color[peek] == color[u]) {
  89.         return false;
  90.       }
  91.     }
  92.   }
  93.   return true;
  94. }
  95. int main() {
  96.   ios_base::sync_with_stdio(false);
  97.   cin.tie(0);
  98.   cout.tie(0);
  99.   while (true) {
  100.     int n, e;
  101.     cin >> n;
  102.     if (n == 0) {
  103.       break;
  104.     }
  105.     cin >> e;
  106.     for (int i = 0; i < e; i++) {
  107.       int u, v;
  108.       cin >> u >> v;
  109.       adj[u].push_back(v);
  110.       adj[v].push_back(u);
  111.     }
  112.     if (isBi(0)) {
  113.       cout << "BICOLORABLE.\n";
  114.     } else {
  115.       cout << "NOT BICOLORABLE.\n";
  116.     }
  117.     for (int i = 0; i <= mx; i++) {
  118.       adj[i].clear();
  119.     }
  120.   }
  121.   return 0;
  122. }
  123.  
  124.  
  125.  
  126. problem link:https://lightoj.com/problem/jane-and-the-frost-giants/////print the case number and IMPOSSIBLE if Jane cannot escape from the maze before fire reaches her, or the earliest time for Jane to safely escape from the maze, in minutes.
  127.  
  128. #include <bits/stdc++.h>
  129. using namespace std;
  130. #define ll long long int
  131. const int mx = 205;
  132. char grid[mx][mx];
  133. int dx[] = {0, 0, -1, 1};
  134. int dy[] = {1, -1, 0, 0};
  135. vector<pair<int, int>> fire;
  136. int fire_level[mx][mx];
  137. int man_level[mx][mx];
  138. int n, m;
  139. void bfs_fire() {
  140.   memset(fire_level, -1, sizeof(fire_level));
  141.   queue<pair<int, int>> que;
  142.   for (int i = 0; i < fire.size(); i++) {
  143.     que.push({fire[i].first, fire[i].second});
  144.     fire_level[fire[i].first][fire[i].second] = 0;
  145.   }
  146.   while (!que.empty()) {
  147.     int x = que.front().first;
  148.     int y = que.front().second;
  149.     que.pop();
  150.     for (int i = 0; i < 4; i++) {
  151.       int x1 = x + dx[i];
  152.       int y1 = y + dy[i];
  153.       if (x1 >= 1 && x1 <= n && y1 >= 1 && y1 <= m &&
  154.           fire_level[x1][y1] == -1 && grid[x1][y1] != '#') {
  155.         fire_level[x1][y1] = fire_level[x][y] + 1;
  156.         que.push({x1, y1});
  157.       }
  158.     }
  159.   }
  160. }
  161. void bfs_man(int s1, int s2) {
  162.   memset(man_level, -1, sizeof(man_level));
  163.   queue<pair<int, int>> que;
  164.   man_level[s1][s2] = 0;
  165.   que.push({s1, s2});
  166.   while (!que.empty()) {
  167.     int x = que.front().first;
  168.     int y = que.front().second;
  169.     que.pop();
  170.     for (int i = 0; i < 4; i++) {
  171.       int x1 = x + dx[i];
  172.       int y1 = y + dy[i];
  173.       if (x1 >= 1 && x1 <= n && y1 >= 1 && y1 <= m && man_level[x1][y1] == -1 &&
  174.           man_level[x][y] + 1 < fire_level[x1][y1] && grid[x1][y1] != '#') {
  175.         man_level[x1][y1] = man_level[x][y] + 1;
  176.         que.push({x1, y1});
  177.       }
  178.     }
  179.   }
  180. }
  181. int main() {
  182.   ios_base::sync_with_stdio(false);
  183.   cin.tie(0);
  184.   cout.tie(0);
  185.   int tt, k = 1;
  186.   cin >> tt;
  187.   while (tt--) {
  188.     fire.clear();
  189.     cin >> n >> m;
  190.     int x = 0, y = 0;
  191.     for (int i = 1; i <= n; i++) {
  192.       for (int j = 1; j <= m; j++) {
  193.         cin >> grid[i][j];
  194.         if (grid[i][j] == 'J') {
  195.           x = i, y = j;
  196.         } else if (grid[i][j] == 'F') {
  197.           fire.push_back({i, j});
  198.         }
  199.       }
  200.     }
  201.     bfs_fire();
  202.     bfs_man(x, y);
  203.     int low = INT_MAX;
  204.     for (int i = 1; i <= n; i++) {
  205.       if (man_level[i][1] != -1) {
  206.         low = min(low, man_level[i][1]);
  207.       }
  208.     }
  209.     for (int i = 1; i <= n; i++) {
  210.       if (man_level[i][m] != -1) {
  211.         low = min(low, man_level[i][m]);
  212.       }
  213.     }
  214.     for (int i = 1; i <= m; i++) {
  215.       if (man_level[1][i] != -1) {
  216.         low = min(low, man_level[1][i]);
  217.       }
  218.     }
  219.     for (int i = 1; i <= m; i++) {
  220.       if (man_level[n][i] != -1) {
  221.         low = min(low, man_level[n][i]);
  222.       }
  223.     }
  224.     cout << "Case " << k++ << ": ";
  225.     if (low == INT_MAX) {
  226.       cout << "IMPOSSIBLE\n";
  227.     } else {
  228.       cout << low + 1 << "\n";
  229.     }
  230.   }
  231.   return 0;
  232. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement