스티커붙이기1 백준 - 스티커 붙이기 문제 설명 스티커를 해당 칸에 최대 몇개까지 붙여 0이 아닌칸을 출력하는 문제이다. 주의사항 2차원 배열을 회전할 때 회전방향은 시계 방향부터 해야한다. 그렇지 않는다면 다르게 칸에 끼워져 정답이랑 값이 멀어지기 때문이다. 풀이 static int autoIncrement = 1; private static int[][] grid; private static int n; private static int m; static class Shape { int idx = autoIncrement++; int n, m; int map[][]; public Shape(int n, int m, int[][] map) { this.n = n; this.m = m; this.map = map; } /** * 주의 : 9.. Algorithm/백준 2023. 3. 23. 이전 1 다음