-
Notifications
You must be signed in to change notification settings - Fork 0
/
day6.cpp
74 lines (57 loc) · 1.22 KB
/
day6.cpp
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
#include <bits/stdc++.h>
#include <string>
#include <iostream>
using namespace std;
string lexicographicallySmallest(string S, int k)
{
int n = S.size();
if ((n & (n - 1)) == 0)
k = k / 2;
else
k = k * 2;
if (k >= n)
return "-1";
stack<char> str;
for (int i = 0; i < n; i++)
{
char ch = S[i];
while (!str.empty() && k > 0 && str.top() > ch)
{
str.pop();
k--;
}
str.push(ch);
}
// cout<<"befroe part 2 \n";
// while (!str.empty())
// {
// cout <<str.top()<<"\n";
// str.pop();
// }
while (!str.empty() && k > 0)
{
str.pop();
k--;
}
// cout<<"after part 2";
// while (!str.empty())
// {
// cout << str.top() << "\n";
// str.pop();
// }
string ans = " ";
while (!str.empty())
{
ans +=str.top();
str.pop();
}
reverse(ans.begin(), ans.end());
return ans;
}
int main(){
string str;
int k;
cin>>str>>k;
string answer=lexicographicallySmallest(str,k);
cout<<answer;
}