Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[김채은] 3주차 과제 제출합니다 #15

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from

Conversation

chaen-ing
Copy link
Member

4번 알고리즘 풀이 및 글쓰기 주제로 블로그 작성했습니다.
https://velog.io/@chaen-ing/백준-java-3055-탈출

Copy link
Member

@kych4n kych4n left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

문제 정리, 해결 순서를 구분되어 잘 정리해주셔서 이해하기 쉬웠습니다.
왠지 자바로 코테를 준비하는 것은 더 어려워 보이는군요.. 잘 읽었습니다.

Comment on lines +11 to +23
#### 🔎 문제 정리
**R행 C열**의 지도 존재
- **고슴도치 (S)**
- 비버의 위치(D)까지 _최소 이동 횟수_로 이동해야함
- 물과 돌 통과 불가
- 물이 찰 예정인 칸으로도 이동 불가
- 상하좌우로 이동
- ** 물 (*)**
- 돌 통과 불가
- 비버의 위치로 확장 불가
- 상하좌우로 확장
- **빈곳 (.)**
- **돌 (x)**
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

문제를 요약해서 정리해주신 덕분에 문제를 파악하기 수월했습니다.


1. 고슴도치의 위치, 현재 맵 등 입력 정보를 받아준다

2. `bfs()` & `flood()`
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

bfs() & flood() 의 의미가 무엇인지 여쭤봐도 될까요?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

둘다 메서드인데 설명이 부족했던 것 같네요!! 추후에 블로그에 더 추가해놓겠습니다. 간단하게 말씀드리자면 flood는 이동전에 물이 차오를 곳을 미리 체크하는 로직, bfs는 flood의 결과를 바탕으로 이동할 수 있는 곳을 체크하는 로직이라고 보시면 될 것 같습니다. 리뷰감사합니다~👍

Copy link
Member

@0-x-14 0-x-14 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

문제 해결 순서를 깔끔하게 정리해놓으셔서 코드와 함꼐 이해하기 좋았던 것 같습니다! 글 잘 읽고 갑니다

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants