일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 715. Range Module
- 30. Substring with Concatenation of All Words
- Protocol
- concurrency
- Convert Sorted List to Binary Search Tree
- Regular Expression
- shiba
- 파이썬
- Decorator
- 시바견
- t1
- iterator
- DWG
- Python Implementation
- Python
- Class
- Substring with Concatenation of All Words
- 109. Convert Sorted List to Binary Search Tree
- 운영체제
- LeetCode
- kaggle
- 컴퓨터의 구조
- 43. Multiply Strings
- 315. Count of Smaller Numbers After Self
- 밴픽
- data science
- attribute
- Python Code
- Generator
- 프로그래머스
Archives
- Today
- Total
Scribbling
프로그래머스: N으로 표현 본문
난이도가 높지는 않은 문제.
N을 1개씩 늘려가면서 완전탐색하되, number가 있는지 확인한다.
예컨대... 5가 네개인 경우를 완전탐색하려면, (5, 5, 5, 5)
(5) + (5, 5, 5)
(5, 5) + (5, 5)
(5, 5, 5) + (5)
위의 모든 케이스를 다 따져 주면 된다.
여기서 +는 더하라는 의미가 아니라,
왼쪽에서 발생되는 모든 케이스와 오른쪽에서 발생되는 모든 케이스를 조합하는 모든 케이스를 생성하라는 의미이다.
def solution(N, number):
if number == N:
return 1
dp = [[] for _ in range(9)]
dp[1] = [N]
for i in range(2, 9):
dp[i].append(int(str(N)*i))
for j in range(1, i):
for x in dp[j]:
for y in dp[i-j]:
dp[i].append(x+y)
dp[i].append(x-y)
dp[i].append(x*y)
if y != 0:
dp[i].append(x//y)
dp[i] = list(set(dp[i]))
if number in dp[i]:
return i
return -1
'Computer Science > Coding Test' 카테고리의 다른 글
프로그래머스: 등굣길 (0) | 2021.10.26 |
---|---|
프로그래머스: 정수 삼각형 (0) | 2021.10.26 |
LeetCode: 106. Construct Binary Tree from Inorder and Postorder Traversal (0) | 2021.10.21 |
프로그래머스: 단속카메라 (0) | 2021.10.21 |
프로그래머스: 섬 연결하기 (0) | 2021.10.21 |