https://www.acmicpc.net/problem/6593 6593번: 상범 빌딩 당신은 상범 빌딩에 갇히고 말았다. 여기서 탈출하는 가장 빠른 길은 무엇일까? 상범 빌딩은 각 변의 길이가 1인 정육면체(단위 정육면체)로 이루어져있다. 각 정육면체는 금으로 이루어져 있어 www.acmicpc.net 문제를 풀다가 메모리 초과가 발생하였다. 메모리초과가 뜨는 이유로 Queue에서 뽑을 때 visited를 처리하는 것이 아닌 Queue에 넣을 때 visited 를 처리해야된다는 것이다. [메모리 초과 코드] queue.poll() 이후에 visited를 체크한다. Queue queue = new LinkedList(); queue.add(start); StringBuilder sb = new Stri..
https://github.com/ghrnwjd/graduation-plan-plus/tree/main GitHub - ghrnwjd/graduation-plan-plus: HUFS SUMMER HACKERTHON TEAM 426: Graduate Plan+ HUFS SUMMER HACKERTHON TEAM 426: Graduate Plan+. Contribute to ghrnwjd/graduation-plan-plus development by creating an account on GitHub. github.com 1. 시작 페이지 2. 로그인 페이지 2-1 회원가입 Controller @PostMapping("/student/add/{department}") public ResponseDto ad..