Advertisement
Nsinecode

Untitled

Nov 17th, 2024
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 3.82 KB | None | 0 0
  1. #include <iostream>
  2. #include <vector>
  3. #include <queue>
  4. #include <cmath>
  5.  
  6. struct Point
  7. {
  8.     int x;
  9.     int y;
  10. };
  11.  
  12. bool isValid(int x, int y, int rows, int cols)
  13. {
  14.     return x >= 0 && x < rows && y >= 0 && y < cols;
  15. }
  16.  
  17. int bfs(const std::vector<std::vector<char>>& grid, Point start, Point finish)
  18. {
  19.     int rows = grid.size();
  20.     int cols = grid[0].size();
  21.     std::vector<std::vector<int>> dist(rows, std::vector<int>(cols, -1));
  22.     std::queue<Point> q;
  23.     q.push(start);
  24.     dist[start.x][start.y] = 0;
  25.  
  26.     int dx[] = { -1, 1, 0, 0 };
  27.     int dy[] = { 0, 0, -1, 1 };
  28.  
  29.     while (!q.empty())
  30.     {
  31.         Point p = q.front();
  32.         q.pop();
  33.  
  34.         if (p.x == finish.x && p.y == finish.y)
  35.         {
  36.             return dist[p.x][p.y];
  37.         }
  38.  
  39.         for (int i = 0; i < 4; ++i)
  40.         {
  41.             int nx = p.x + dx[i];
  42.             int ny = p.y + dy[i];
  43.  
  44.             if (isValid(nx, ny, rows, cols) && dist[nx][ny] == -1 && grid[nx][ny] != 'W')
  45.             {
  46.                 dist[nx][ny] = dist[p.x][p.y] + 1;
  47.                 q.push({ nx, ny });
  48.             }
  49.         }
  50.     }
  51.     return -1; // Путь не найден
  52. }
  53.  
  54. int bfsMouse(const std::vector<std::vector<char>>& grid, Point start, Point finish, int humanSteps)
  55. {
  56.     int rows = grid.size();
  57.     int cols = grid[0].size();
  58.     std::vector<std::vector<std::vector<int>>> dist(rows, std::vector<std::vector<int>>(cols, std::vector<int>(2, -1)));
  59.     std::queue<std::pair<Point, int>> q;
  60.     q.push({ start, 0 });
  61.     dist[start.x][start.y][0] = 0;
  62.  
  63.     int dx[] = { -1, 1, 0, 0 };
  64.     int dy[] = { 0, 0, -1, 1 };
  65.  
  66.     while (!q.empty())
  67.     {
  68.         Point p = q.front().first;
  69.         int wallsBroken = q.front().second;
  70.         q.pop();
  71.  
  72.         if (p.x == finish.x && p.y == finish.y)
  73.         {
  74.             return dist[p.x][p.y][wallsBroken];
  75.         }
  76.  
  77.  
  78.         if (dist[p.x][p.y][wallsBroken] >= humanSteps)
  79.             continue;
  80.  
  81.         for (int i = 0; i < 4; ++i)
  82.         {
  83.             int nx = p.x + dx[i];
  84.             int ny = p.y + dy[i];
  85.  
  86.             if (!isValid(nx, ny, rows, cols))
  87.                 continue;
  88.  
  89.             char cell = grid[nx][ny];
  90.  
  91.             if (cell != 'W')
  92.             {
  93.                 if (dist[nx][ny][wallsBroken] == -1)
  94.                 {
  95.                     dist[nx][ny][wallsBroken] = dist[p.x][p.y][wallsBroken] + 1;
  96.                     q.push({ { nx, ny }, wallsBroken });
  97.                 }
  98.             }
  99.             else if (wallsBroken == 0)
  100.             {
  101.                 if (dist[nx][ny][1] == -1)
  102.                 {
  103.                     dist[nx][ny][1] = dist[p.x][p.y][wallsBroken] + 1;
  104.                     q.push({ { nx, ny }, 1 });
  105.                 }
  106.             }
  107.         }
  108.     }
  109.     return -1;
  110. }
  111.  
  112. int main()
  113. {
  114.     int M, N;
  115.     std::cin >> M >> N;
  116.  
  117.     std::vector<std::vector<char>> field(M, std::vector<char>(N));
  118.     Point humanStart, mouseStart, finish;
  119.  
  120.     for (int i = 0; i < M; ++i)
  121.     {
  122.         for (int j = 0; j < N; ++j)
  123.         {
  124.             std::cin >> field[i][j];
  125.             if (field[i][j] == 'H')
  126.                 humanStart = { i, j };
  127.             else if (field[i][j] == 'M')
  128.                 mouseStart = { i, j };
  129.             else if (field[i][j] == 'F')
  130.                 finish = { i, j };
  131.         }
  132.     }
  133.  
  134.     int humanSteps = bfs(field, humanStart, finish);
  135.  
  136.     if (humanSteps == -1)
  137.     {
  138.         std::cout << "MOUSE";
  139.         return 0;
  140.     }
  141.  
  142.     humanSteps = std::ceil(humanSteps / 2.0);
  143.  
  144.     int mouseSteps = bfsMouse(field, mouseStart, finish, humanSteps);
  145.  
  146.     if (mouseSteps == -1 || humanSteps < mouseSteps)
  147.     {
  148.         std::cout << "HUMAN";
  149.     }
  150.     else if (humanSteps > mouseSteps)
  151.     {
  152.         std::cout << "MOUSE";
  153.     }
  154.     else
  155.     {
  156.         std::cout << "DRAW";
  157.     }
  158.  
  159.     return 0;
  160. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement