# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
105596 | Leonardo_Paes | 세 명의 친구들 (BOI14_friends) | C++11 | 1072 ms | 6380 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
int mark[27];
int main(){
map<string, int> m;
int n;
cin >> n;
string t;
cin >> t;
for(int i=0; i<n; i++){
mark[t[i]-'A']++;
}
if(n%2==0){
cout << "NOT POSSIBLE" << endl;
return 0;
}
int x=-1;
bool resp=true;
for(int i=0; i<=26; i++){
if(mark[i]%2==1){
if(x!=-1)resp=false;
x=i;
}
}
if(resp==false){
cout << "NOT POSSIBLE" << endl;
return 0;
}
string y="-1";
string p;
int w=0;
for(int i=0; i<n; i++){
if(t[i]-'A'==x){
int u=0;
string h;
for(int j=0; j<n; j++){
if(i!=j){
h+=t[j];
u++;
}
if(u==(n-1)/2){
u=j;
break;
}
}
string q;
for(int e=u+1; e<n; e++){
if(e!=i)q+=t[e];
}
if(q==h and m.find(q)==m.end()){
if(y!="-1" and y!=q){
p="NOT UNIQUE\n";
}
y=q;
m[q]=2;
}
}
}
if(p=="NOT UNIQUE\n"){
cout << p;
}
else if(resp==false){
cout << "NOT POSSIBLE\n";
}
else{
if(y=="-1"){
cout << "NOT POSSIBLE\n";
return 0;
}
cout << y << endl;
}
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |