# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
27479 | TAMREF | 세 명의 친구들 (BOI14_friends) | C++11 | 6 ms | 3972 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
const int mx=2e6+10;
int n,h;
char S[mx];
void nu(){exit(0*puts("NOT UNIQUE"));}
void np(){exit(0*puts("NOT POSSIBLE"));}
void input(){
scanf("%d\n",&n);
if(n%2==0) np();
fgets(S,mx-4,stdin);
S[n]=0; h=(n-1)>>1;
}
void solve(){
int i,cnt=0;
for(i=0;i<h&&S[i]==S[i+h];i++);
for(;i<h&&S[i]==S[i+h+1];i++);
if(i==h) cnt|=1;
for(i=0;i<h&&S[i]==S[i+h+1];i++);
for(;i<h&&S[i+1]==S[i+h+1];i++);
if(i==h) cnt|=2;
S[h]=0;
switch(cnt){
case 0: np();
case 1: exit(0*puts(S));
case 3: if(strcmp(S,S+h+1)) nu();
case 2: exit(0*puts(S+h+1));
}
}
int main(){
input();
solve();
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |