💡 문제도미노https://www.acmicpc.net/problem/1552권장 시간1시간 30분소요 시간1시간 30분 + a나의 풀이 코드import java.io.*;public class BOJ1552 { int[][] map; int N; int maxScore = Integer.MIN_VALUE; int minScore = Integer.MAX_VALUE; // permutation에서 생성된 순열로 점수 계산 private void calculate(int[] perm) { boolean[] isVisited = new boolean[N]; int score = 1; // 현재 순열에 대한 점수 (곱하기니까 초기값은 1) ..