ps:problems:boj:1208
부분수열의 합 2
ps | |
---|---|
링크 | acmicpc.net/… |
출처 | BOJ |
문제 번호 | 1208 |
문제명 | 부분수열의 합 2 |
레벨 | 골드 1 |
분류 |
Meet in the middle |
시간복잡도 | O(2^(n/2)) |
인풋사이즈 | n<=40 |
사용한 언어 | Python |
제출기록 | 149996KB / 964ms |
최고기록 | 832ms |
해결날짜 | 2021/09/19 |
풀이
- 부분수열의 합에서 n의 범위를 늘린 문제
코드
"""Solution code for "BOJ 1208. 부분수열의 합 2".
- Problem link: https://www.acmicpc.net/problem/1208
- Solution link: http://www.teferi.net/ps/problems/boj/1208
Tags: [MeetInTheMiddle]
"""
import collections
def main():
N, S = [int(x) for x in input().split()]
nums = [int(x) for x in input().split()]
first, second = [0], [0]
for num in nums[:N // 2]:
first.extend([num + x for x in first])
for num in nums[N // 2:]:
second.extend([num + x for x in second])
second_counter = collections.Counter(second)
answer = sum(second_counter[S - f] for f in first)
if S == 0:
answer -= 1
print(answer)
if __name__ == '__main__':
main()
ps/problems/boj/1208.txt · 마지막으로 수정됨: 2021/09/29 12:38 저자 teferi
토론