Advertisement
Nsinecode

Untitled

Nov 17th, 2024
139
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 4.48 KB | None | 0 0
  1. import java.util.*;
  2.  
  3. public class Main {
  4.     static class Point {
  5.         int x, y;
  6.  
  7.         Point(int x, int y) {
  8.             this.x = x;
  9.             this.y = y;
  10.         }
  11.     }
  12.  
  13.     static class State {
  14.         Point p;
  15.         int wallsBroken;
  16.  
  17.         State(Point p, int wallsBroken) {
  18.             this.p = p;
  19.             this.wallsBroken = wallsBroken;
  20.         }
  21.     }
  22.  
  23.     static boolean isValid(int x, int y, int rows, int cols) {
  24.         return x >= 0 && x < rows && y >= 0 && y < cols;
  25.     }
  26.  
  27.     static int bfs(char[][] grid, Point start, Point finish) {
  28.         int rows = grid.length;
  29.         int cols = grid[0].length;
  30.         int[][] dist = new int[rows][cols];
  31.         for (int[] row : dist)
  32.             Arrays.fill(row, -1);
  33.         Queue<Point> q = new LinkedList<>();
  34.         q.add(start);
  35.         dist[start.x][start.y] = 0;
  36.  
  37.         int[] dx = { -1, 1, 0, 0 };
  38.         int[] dy = { 0, 0, -1, 1 };
  39.  
  40.         while (!q.isEmpty()) {
  41.             Point p = q.poll();
  42.             if (p.x == finish.x && p.y == finish.y) {
  43.                 return dist[p.x][p.y];
  44.             }
  45.             for (int i = 0; i < 4; ++i) {
  46.                 int nx = p.x + dx[i];
  47.                 int ny = p.y + dy[i];
  48.                 if (isValid(nx, ny, rows, cols) && dist[nx][ny] == -1 && grid[nx][ny] != 'W') {
  49.                     dist[nx][ny] = dist[p.x][p.y] + 1;
  50.                     q.add(new Point(nx, ny));
  51.                 }
  52.             }
  53.         }
  54.         return -1; // Path not found
  55.     }
  56.  
  57.     static int bfsMouse(char[][] grid, Point start, Point finish, int humanSteps) {
  58.         int rows = grid.length;
  59.         int cols = grid[0].length;
  60.         int[][][] dist = new int[rows][cols][2];
  61.         for (int[][] mat : dist)
  62.             for (int[] row : mat)
  63.                 Arrays.fill(row, -1);
  64.         Queue<State> q = new LinkedList<>();
  65.         q.add(new State(start, 0));
  66.         dist[start.x][start.y][0] = 0;
  67.  
  68.         int[] dx = { -1, 1, 0, 0 };
  69.         int[] dy = { 0, 0, -1, 1 };
  70.  
  71.         while (!q.isEmpty()) {
  72.             State s = q.poll();
  73.             Point p = s.p;
  74.             int wallsBroken = s.wallsBroken;
  75.  
  76.             if (p.x == finish.x && p.y == finish.y) {
  77.                 return dist[p.x][p.y][wallsBroken];
  78.             }
  79.  
  80.             if (dist[p.x][p.y][wallsBroken] >= humanSteps)
  81.                 continue;
  82.  
  83.             for (int i = 0; i < 4; ++i) {
  84.                 int nx = p.x + dx[i];
  85.                 int ny = p.y + dy[i];
  86.                 if (!isValid(nx, ny, rows, cols))
  87.                     continue;
  88.                 char cell = grid[nx][ny];
  89.                 if (cell != 'W') {
  90.                     if (dist[nx][ny][wallsBroken] == -1) {
  91.                         dist[nx][ny][wallsBroken] = dist[p.x][p.y][wallsBroken] + 1;
  92.                         q.add(new State(new Point(nx, ny), wallsBroken));
  93.                     }
  94.                 } else if (wallsBroken == 0) {
  95.                     if (dist[nx][ny][1] == -1) {
  96.                         dist[nx][ny][1] = dist[p.x][p.y][wallsBroken] + 1;
  97.                         q.add(new State(new Point(nx, ny), 1));
  98.                     }
  99.                 }
  100.             }
  101.         }
  102.         return -1;
  103.     }
  104.  
  105.     public static void main(String[] args) {
  106.         Scanner sc = new Scanner(System.in);
  107.         int M = sc.nextInt();
  108.         int N = sc.nextInt();
  109.         char[][] field = new char[M][N];
  110.         Point humanStart = null, mouseStart = null, finish = null;
  111.  
  112.         for (int i = 0; i < M; ++i) {
  113.             String line = sc.next();
  114.             for (int j = 0; j < N; ++j) {
  115.                 field[i][j] = line.charAt(j);
  116.                 if (field[i][j] == 'H')
  117.                     humanStart = new Point(i, j);
  118.                 else if (field[i][j] == 'M')
  119.                     mouseStart = new Point(i, j);
  120.                 else if (field[i][j] == 'F')
  121.                     finish = new Point(i, j);
  122.             }
  123.         }
  124.  
  125.         int humanSteps = bfs(field, humanStart, finish);
  126.  
  127.         if (humanSteps == -1) {
  128.             System.out.print("MOUSE");
  129.             return;
  130.         }
  131.  
  132.         humanSteps = (int) Math.ceil(humanSteps / 2.0);
  133.  
  134.         int mouseSteps = bfsMouse(field, mouseStart, finish, humanSteps);
  135.  
  136.         if (mouseSteps == -1 || humanSteps < mouseSteps) {
  137.             System.out.print("HUMAN");
  138.         } else if (humanSteps > mouseSteps) {
  139.             System.out.print("MOUSE");
  140.         } else {
  141.             System.out.print("DRAW");
  142.         }
  143.     }
  144. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement