programmers 389480 java
[프로그래머스, 389480] 완전범죄 (java)
https://school.programmers.co.kr/learn/courses/30/lessons/389480 프로그래머스SW개발자를 위한 평가, 교육의 Total Solution을 제공하는 개발자 성장을 위한 베이스캠프programmers.co.kr메모리: 93.7 MB, 시간: 12.69 ms사용 알고리즘: 자료구조import java.util.*;class Solution { public int solution(int[][] info, int n, int m) { Queue q = new LinkedList(); if(info[0][0] next; boolean[][] visited; int[] tmp; ..