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