-
Notifications
You must be signed in to change notification settings - Fork 0
/
IP_13.cpp
80 lines (77 loc) · 1.49 KB
/
IP_13.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
75
76
77
78
79
80
#include <bits/stdc++.h>
using namespace std;
void palindrome(string &str)
{
int n = str.size();
int i = 0, j = n - 1;
while (i <= j)
{
if (str[i] == str[j])
{
i++;
j--;
}
else
{
if(j - i == 2 && str[j - 1] == str[j])
{
swap(str[j-1], str[i]);
cout << str;
return ;
}
int k = j;
int flag = 0;
while (k > i)
{
if (str[k] == str[i])
{
flag = 1;
break;
}
k--;
}
if (flag)
{
swap(str[j], str[k]);
i++;
j--;
}
else
{
cout << "NO SOLUTION";
return;
}
}
}
cout << str;
return;
}
int main()
{
string str;
cin >> str;
palindrome(str);
/*
if (str.size() % 2 == 0)
{
palindrome(str);
}
else
{
string arr = str;
int m = 0, n = str.size() - 1;
int count = 0;
while (m < n)
{
if(arr[m] == arr[n])
{
arr[m] = 0;
arr[n] = 0;
}
else
{
}
}
}
*/
}