Notice
Recent Posts
Recent Comments
Link
목록2025/05/04 (1)
변수의 기록

문제 내가 최초 제출 답안 (틀림) public class testMain { static int[][] map ; static boolean[][] visted ; static int w ; static int h ; static int[] x = {-1,1,0,0} ; //높이 static int[] y = {0,0,-1,1} ; //너비 static int count =0 ; public static void main(String[] args) { // TODO Auto-generated method stub //bfs 큐에 담아서 예약 걸어둠 , visied 영역 표시 잘해야함 함수 초기 코드 + 상하좌우 검증 코드에도 조건 부합시 que로 while 루프 돌림 //dfs 재귀로..
기타/코딩테스트
2025. 5. 4. 21:18