-
Notifications
You must be signed in to change notification settings - Fork 4
[1주차] 이지영 #5
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
Merged
Merged
[1주차] 이지영 #5
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
📗 월요일
[CT] 자율주행 자동차
🤔 시간복잡도 고려사항
N * M * 과정횟수 == 50 * 50 * 3
💡 풀이 아이디어
[CT] 불안한 무빙워크
🤔 시간복잡도 고려사항
모든칸 확인(N * N) * 안전성 감소(N)
💡 풀이 아이디어
📗 화요일
[BOJ] 2531_회전초밥
🤔 시간복잡도 고려사항
접시 수 N
💡 풀이 아이디어
[SQL] 연도별 대장균 크기의 편차 구하기
💡 풀이 아이디어
📗 수요일
[BOJ] 3020_개똥벌레
🤔 시간복잡도 고려사항
장애물 기록(N) + 각 높이 확인(H) == O(N+H)
💡 풀이 아이디어
ex) urr[3] = 높이가 3일때, 충돌하는 석순의 개수
📗 목요일
[PG] 132265_롤케이크 자르기
🤔 시간복잡도 고려사항
토핑의 길이 == topping.length 1,000,000
💡 풀이 아이디어
[PG] 12927_야근 지수
🤔 시간복잡도 고려사항
works의 길이 * n은 충분히 크기 때문에 우선순위 큐를 활용해야 함
💡 풀이 아이디어
[SQL] 부모의 형질을 모두 가지는 대장균 찾기
💡 풀이 아이디어
📗 금요일
[PG] 49994_방문 길이
🤔 시간복잡도 고려사항
그래프 크기(10 * 10)이 충분히 작고, 명령의 길이가 500이하이므로 크게 고려 X
💡 풀이 아이디어
[PG] 154539_뒤에 있는 큰 수 찾기
🤔 시간복잡도 고려사항
각 원소에 대해 뒤에 있는 수를 체크하면 O(N^2)이므로 불가 -> O(N) 해결해야 함
💡 풀이 아이디어
(스택의 상단이 현재 값보다 클 때까지 반복)