# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
938196 | Sir_Ahmed_Imran | 세 명의 친구들 (BOI14_friends) | C++17 | 27 ms | 7680 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
///~~~LOTA~~~///
#include <bits/stdc++.h>
using namespace std;
#define ll long long
#define append push_back
#define add insert
#define nl "\n"
#define ff first
#define ss second
#define pii pair<int,int>
#define all(x) (x).begin(),(x).end()
#define L0TA ios_base::sync_with_stdio(false);cin.tie(NULL)
#define N 100001
void solve(){
int n,m,o,p,q,r;
string s,t;
cin>>n>>s;
s.append('.');
if(n%2==0){
cout<<"NOT POSSIBLE";
return;
}
m=n/2;
t="";
for(int i=0;i<m;i++){
if(s[i]!=s[i+m+1])
break;
t.append(s[i]);
}
if(t.size()==m){
cout<<t;
return;
}
o=p=q=0;
for(int i=m;i<n;i++)
if(s[i]==s[o]) o++;
if(o>=m) p=1;
o=m+1;
for(int i=0;i<=m;i++)
if(s[i]==s[o]) o++;
if(o>=n) q=1;
if(p && q) cout<<"NOT UNIQUE";
else if(p){
for(int i=0;i<m;i++)
cout<<s[i];
}
else if(q){
for(int i=m+1;i<n;i++)
cout<<s[i];
}
else cout<<"NOT POSSIBLE";
}
int main(){
L0TA;
solve();
return 0;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |