# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
17423 | choyi0521 | 세 명의 친구들 (BOI14_friends) | C++98 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<iostream>
using namespace std;
const int MAX_N=2000001;
int n;
char str[MAX_N+1];
int main(){
cin >> n >> str;
int i,tmp=0;
for(i=0; i<n/2 && str[i]==str[n/2+i]; i++);
for(; i<n/2 && str[i]==str[n/2+1+i]; i++);
if(i==n/2) tmp+=1;
for(i=0; i<n/2 && str[i]==str[n/2+1+i]; i++);
for(; i<n/2 && str[i+1]==str[n/2+1+i]; i++);
if(i==n/2) tmp+=2;
str[n/2]=0;
if(tmp==0 || n%2==0) cout<<"NOT POSSIBLE";
else if(tmp==3 && strcmp(str,str+n/2+1)) cout << "NOT UNIQUE";
else if(tmp==1) cout<<str;
else cout<<str+n/2+1;
return 0;
}