Skip to content

Commit

Permalink
2024-04-23 23:47:08
Browse files Browse the repository at this point in the history
Affected files:
src/content/blog/boj-10819-차이를-최대로.md
  • Loading branch information
gyunseo committed Apr 23, 2024
1 parent 61c6538 commit 6f3c954
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/content/blog/boj-10819-차이를-최대로.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ ogImage: ""

이 문제는 완전 탐색 문제입니다.
`N`이 최대 8밖에 되지 않기 때문에, 모든 경우의 수를 따져 보면 됩니다.
이때 시간 복잡도가 $O(N!)$이고, 문제에서 순열을 구해야 합니다.
이때 시간 복잡도가 $O(N!N)$이고, 문제에서 순열을 구해야 합니다. (근데 `N`이 최대 8이면 사실 일차항 `N`은 무시해도 되지 않나 싶네요...)

## 풀이 과정

Expand Down

0 comments on commit 6f3c954

Please sign in to comment.