-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path1146B.cpp
86 lines (59 loc) · 1.21 KB
/
1146B.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
81
82
83
84
85
86
#include<bits/stdc++.h>
using namespace std;
int main()
{
char s[100002];
scanf("%s",&s);
int len = strlen(s);
int count_a = 0, not_a = 0;
for(int i=0; i<len; i++)
{
if(s[i]=='a')
{
count_a++;
}
else
{
not_a++;
}
}
if(not_a%2!=0)
{
cout << ":(" << endl;
return 0;
}
else if(count_a==len)
{
cout << s << endl;
}
else
{
int t = len-(not_a / 2);
int count = 0;
string s1,s2;
for(int i=0; i<t; i++)
{
if(s[i]!='a')
{
s1.push_back(s[i]);
}
}
//cout << s1 << endl;
for(int j=t; j<len; j++)
{
s2.push_back(s[j]);
}
// cout << s2 << endl;
if(s1==s2)
{
for(int i=0; i<t; i++)
cout << s[i];
cout << endl;
}
else
{
cout << ":(" << endl;
// cout << "not" << endl;
}
}
}