# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
625627 | kkkkkkkk | 세 명의 친구들 (BOI14_friends) | C++14 | 81 ms | 4228 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <iostream>
using namespace std;
int main()
{
int n;
string s;
cin >> n >> s;
if (n%2==0)
{
cout << "NOT POSSIBLE" << endl;
return 0;
}
int cnt=0,poz=-1;
bool ok=true,moze=true;
for (int i=0,j=n/2+1;j<n,i<=n/2;)
{
if (s[i]==s[j])
i++,j++;
else if (s[i]!=s[j]&&ok==true)
poz=i,i++,ok=false;
else
{
moze=false;
break;
}
}
if (moze)
cnt++;
ok=true,moze=true;
for (int i=0,j=n/2;j<n,i<n/2;)
{
if (s[i]==s[j])
i++,j++;
else if (s[i]!=s[j]&&ok==true)
{
if (poz==-1)
poz=j;
j++,ok=false;
}
else
{
moze=false;
break;
}
}
if (moze)
cnt++;
if (cnt==0)
cout << "NOT POSSIBLE" << endl;
else if (cnt==1)
{
//cout << poz << endl;
if (poz>=n/2)
{
for (int i=0;i<n/2;i++)
cout << s[i];
}
else
{
for (int i=n/2+1;i<n;i++)
cout << s[i];
}
}
else
cout << "NOT UNIQUE" << endl;
return 0;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |