Construct Smallest Number From DI String — LeetCode 2375 Python Solution
- Problem
- #2375
- Pattern
- Backtracking
- Reading time
- 5 min
- Source
- leetcode.com
The problem
You are given a 0-indexed string pattern of length n consisting of the characters 'I' meaning increasing and 'D' meaning decreasing. A 0-indexed string num of length n + 1 is created using the following conditions: num consists of the digits '1' to '9', where each digit is used at most once.
Example
- Input
- pattern = "IIIDIDDD"
- Output
- "123549876"
- Explanation
- At indices 0, 1, 2, and 4 we must have that num[i] < num[i+1].
Python solution
class Solution:
def smallestNumber(self, pattern: str) -> str:
def dfs(u):
nonlocal ans
if ans:
return
if u == len(pattern) + 1:
ans = ''.join(t)
return
for i in range(1, 10):
if not vis[i]:
if u and pattern[u - 1] == 'I' and int(t[-1]) >= i:
continue
if u and pattern[u - 1] == 'D' and int(t[-1]) <= i:
continue
vis[i] = True
t.append(str(i))
dfs(u + 1)
vis[i] = False
t.pop()
vis = [False] * 10
t = []
ans = None
dfs(0)
return ansComplexity
| Measure | Complexity |
|---|---|
| Time | O(n log n) |
| Space | O(1) to O(n) auxiliary |
Pattern: Backtracking
Build candidates one choice at a time and abandon a branch the moment it cannot work. LeetCode 2375. Construct Smallest Number From DI String is filed here because LeetCode tags it Backtracking, which is the vocabulary this hub collects.
The backtracking guide has the Python template for the pattern and the 105 LeetCode problems that use it.
Related problems
Frequently asked questions
- How hard is LeetCode 2375. Construct Smallest Number From DI String?
- LeetCode 2375. Construct Smallest Number From DI String is rated Medium on LeetCode.
- What topics does LeetCode 2375. Construct Smallest Number From DI String cover?
- LeetCode 2375. Construct Smallest Number From DI String is tagged Stack, Greedy, String and Backtracking on LeetCode.