이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <iostream>
#include <cstring>
using namespace std;
bool isSame(string s1, string s2, int size)
{
for (int i = 0; i < size; i++)
{
if (s1[i] != s2[i])
return false;
}
return true;
}
int main()
{
int n;
cin >> n;
/*
while (true)
{
string t;
for (int i = 0; i < n - 1; i++)
t += char((rand() % 26) + 65);
cout << t << endl;
cout << t.substr(0, int((n - 1) / 2)) << endl;
cout << t.substr(int((n - 1) / 2), n - 1) << endl;
cin >> t;
}*/
string s;
string res;
int resNum = 0;
cin >> s;
if (n % 2 == 0)
{
cout << "NOT POSSIBLE" << endl;
return 0;
}
for (int i = 0; i < n; i++)
{
string t = s;
for (int j = i; j < n; j++)
{
t[j] = t[j + 1];
}
/*
for (int j = 0; j < n - 1; j++)
cout << t[j];
cout << endl;*/
/*
cout << t.substr(0, int((n - 1) / 2)) << endl;
cout << t.substr(int((n - 1) / 2), n - 1) << endl;*/
if (isSame(t.substr(0, int((n - 1) / 2)), t.substr(int((n - 1) / 2), n - 1), (n - 1) / 2))
{
resNum++;
res = t.substr(0, int((n - 1) / 2));
}
}
if (resNum == 0)
cout << "NOT POSSIBLE" << endl;
else if (resNum > 1)
cout << "NOT UNIQUE" << endl;
else
cout << res << endl;
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |