-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path49_smallestNumber.py
More file actions
26 lines (26 loc) · 1.22 KB
/
49_smallestNumber.py
File metadata and controls
26 lines (26 loc) · 1.22 KB
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
'''2375. Construct Smallest Number From DI String
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.
If pattern[i] == 'I', then num[i] < num[i + 1].
If pattern[i] == 'D', then num[i] > num[i + 1].
Return the lexicographically smallest possible string num that meets the conditions.
Example 1:
Input: pattern = "IIIDIDDD"
Output: "123549876"
Explanation:
At indices 0, 1, 2, and 4 we must have that num[i] < num[i+1].
At indices 3, 5, 6, and 7 we must have that num[i] > num[i+1].
Some possible values of num are "245639871", "135749862", and "123849765".
It can be proven that "123549876" is the smallest possible num that meets the conditions.
Note that "123414321" is not possible because the digit '1' is used more than once.
'''
class Solution:
def smallestNumber(self, pattern: str) -> str:
ans,stack=[],[]
for i in range(len(pattern)+1):
stack.append(i+1)
while stack and (i==len(pattern) or pattern[i]=='I'):
ans.append(str(stack.pop()))
return ''.join(ans)