[알고리즘] 백준21610 - 마법사 상어와 비바라기 java
package a0324; import java.util.*; import java.io.*; public class 백준21610_마법사상어와비바라기 { static int[][] arr; static int[][] dirinfo; static int[] di = {0, -1, -1, -1, 0, 1, 1, 1}; static int[] dj = {-1, -1, 0, 1, 1, 1, 0, -1}; static int nowdir; static int movelen; static int[][] nowcloud; static int size; static int dirsize; public static void main(String[] args) throws Exception{ BufferedReader ..