Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
입국심사 / Level 3
처음에 최솟값과 최댓값을 설정하는 부분에서 인터넷의 도움을 약간 받았습니다....
최적의 값을 찾아야 하는 문제인데, 생각하였던 포인트는 설정한 시간 동안 n명 초과의 사람을 심사했다면 시간이 과하게 많은 것이고, n명 미만의 사람을 심사했다면 시간이 너무 부족한 것이다. 라는 것에 포인트를 잡고 풀었습니다.
나머지는 이진탐색의 풀이법처럼 가운데를 반으로 갈라 점점 범위를 줄여나가며 푸는 방식으로 풀었습니다.
N으로 표현 / Level 3
Dynamic Programming에 아직 약해서.... 인터넷의 도움을 받고 풀이를 진행했습니다..
N을 사용해서 만들 수 있는 수의 집합 중에 number가 처음 나오는 개수를 리턴하면 된다느 것입니다.
dp.. 더 열심히 공부하겠습니다 ㅠ