-
Notifications
You must be signed in to change notification settings - Fork 8
/
Task B.cpp
42 lines (38 loc) · 2.11 KB
/
Task B.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
#include <iostream>
#include <string.h>
using namespace std;
void solve(){
string text;
cin >> text;
int n = text.size();
int i, j, count = 0;
char text_arr[n + 1];
// ���������� ������ � ������ ����.
strcpy(text_arr, text.c_str());
// ����� � ����� ������, � ����� �� �������, ��� �������� � ������ ����� �� ����� (�� �������).
// �� ����, ���� ���� � ����� ������� �������, � � ������ ������� �������� ��� ��������, �� ��� � ���������.
// ������� ��� ���������� ������� ������� ������ �� 2 ����� � ���������� ������������ ��������.
// ����� ���� ��� � ���������, �� ���������� � ����� � ������ ������� ������� ������.
for (i = 0, j = n - 1; i < n / 2 && j >= n / 2; i++, j--){
if ((int)text_arr[i] == (int)text_arr[j] - 32 || (int)text_arr[i] == (int)text_arr[j] + 32){
count++;
}
}
// �� ��� ������ ���� ���� ���������� ����������� ����� ���-�� n (n �� �������, � �� ���������)
// �� �� �������, ��� ��������.
if (count == n / 2){
cout << "Possible" << '\n';
while (count > 0){
cout << count << " ";
count--;
}
} else {
cout << "Impossible";
}
}
int main(){
ios_base::sync_with_stdio(0);
cin.tie(0); cout.tie(0);
solve();
return 0;
}