[알고리즘/백준] 16234 인구 이동 - 자바(Java), 삼성 SW 역량테스트
문제 https://www.acmicpc.net/problem/16234 풀이코드 import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; import java.util.*; public class boj_16234 { static class Pos { int x; int y; public Pos(int x, int y) { this.x = x; this.y = y; } } static boolean[][] check; static int[] dx = {-1, 0, 1, 0}; static int[] dy = {0, 1, 0, -1}; static int n, l, r; public static ..
2021. 11. 7.