-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathA_Strong_Password.cpp
More file actions
62 lines (55 loc) · 1001 Bytes
/
A_Strong_Password.cpp
File metadata and controls
62 lines (55 loc) · 1001 Bytes
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
#include <bits/stdc++.h>
using namespace std;
void solve()
{
string s;
cin >> s;
string ans = "";
int f = 0;
char repChar;
for (int i = 0; i < s.size(); i++)
{
if (i >= 1 && (s[i - 1] == s[i]) && f == 0)
{
repChar = s[i];
for (char ch = 'a'; ch <= 'z'; ch++)
{
if (repChar != ch)
{
ans += ch;
break;
}
}
ans += s[i];
f = 1;
}
else
{
ans += s[i];
}
}
if (f == 0)
{
for (char ch = 'a'; ch <= 'z'; ch++)
{
if (s[s.size() - 1] != ch)
{
ans += ch;
break;
}
}
}
cout << ans << endl;
}
int main()
{
ios_base::sync_with_stdio(false);
cin.tie(NULL);
int t;
cin >> t;
while (t--)
{
solve();
}
return 0;
}