250x250
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 동적sql
- 데코레이터
- BOJ
- 연결리스트
- 유니크제약조건
- 즉시로딩
- 일대다
- FetchType
- SQL프로그래밍
- fetch
- CHECK OPTION
- shared lock
- 스프링 폼
- 연관관계
- 다대다
- 힙
- 낙관적락
- JPQL
- exclusive lock
- 지연로딩
- querydsl
- execute
- 다대일
- dfs
- PS
- 스토어드 프로시저
- 비관적락
- 백트래킹
- eager
- 이진탐색
Archives
- Today
- Total
흰 스타렉스에서 내가 내리지
[BOJ] (BF) 14225번 부분수열의 합 본문
728x90
별다른 해법이 떠오르지 않아 처음부터 브루트포스로 접근했다.
그런데 시간초과가 났다.
아래는 시간초과가 난 코드이다.
from itertools import combinations
n = int(input())
data = list(map(int, input().split()))
arr = []
for i in range(1, n+1):
for c in combinations(data, i):
_sum = sum(c)
arr.append(_sum)
i = 1
while True:
if i not in arr:
break
i += 1
print(i)
여기서 쓸데없이 시간을 지체했던 부분은,
마지막 while 문에, if i not in arr: 를 실행할때마다 O(n)의 시간복잡도를 가진다는 것.
코드를 아래와 같이 수정하면 O(1)에 가능하다.
정답 코드:
from itertools import combinations
n = int(input())
data = list(map(int, input().split()))
arr = [False for _ in range(2000000)]
for i in range(1, n+1):
for c in combinations(data, i):
_sum = sum(c)
arr[_sum] = True
for i in range(1, len(arr)):
if not arr[i]:
print(i)
break
'Problem Solving' 카테고리의 다른 글
[BOJ] (DP) 11053번 가장 긴 증가하는 부분 수열 (0) | 2022.02.05 |
---|---|
[BOJ] (DFS) 1248번 맞혀봐 (0) | 2022.02.04 |
[BOJ] (DP, BFS)14226번 이모티콘 (0) | 2022.02.01 |
[BOJ] (DP) 15990번 1, 2, 3 더하기 5 (0) | 2022.01.31 |
[BOJ] (MATH) 6064번 카잉 달력 ★ (0) | 2022.01.30 |