자바 | 백준 | 21611 | 마법사 상어와 블리자드
Solution import java.io.*; import java.util.*; public class Main { static int N, M; static int[][] map; static int[][] index; static int[] dx = { 0, -1, 1, 0, 0 }; static int[] dy = { 0, 0, 0, -1, 1 }; // 북, 남, 서, 동 static int[] dx2 = { 0, 1, 0, -1 }; static int[] dy2 = { 1, 0, -1, 0 }; static int[] d; static int[] s; static int[] bombs = new int[4]; static Coor[] coors; public static void main(..
자바 | 백준 | 20056 | 마법사 상어와 파이어볼
Solution import java.io.*; import java.util.*; public class Main { static int N, M, K; static int[] dx = { -1, -1, 0, 1, 1, 1, 0, -1 }; static int[] dy = { 0, 1, 1, 1, 0, -1, -1, -1 }; static List list; public static void main(String[] args) throws IOException { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); StringTokenizer st = new StringTokenizer(br.readLine(), " ");..