# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
996277 | SuPythony | 세 명의 친구들 (BOI14_friends) | C++17 | 39 ms | 11068 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
int main() {
int n; cin>>n;
string s; cin>>s;
if (n%2==0) cout<<"NOT POSSIBLE";
else {
string l=s.substr(0,(n-1)/2), r=s.substr((n-1)/2+1,(n-1)/2);
string lc=s.substr((n-1)/2,(n-1)/2+1), rc=s.substr(0,(n-1)/2+1);
vector<string> ans;
int ind=0;
bool wrong=false;
bool pos=true;
for (char i: lc) {
if (i!=l[ind]) {
if (!wrong) {
wrong=true;
continue;
} else {
pos=false;
break;
}
}
ind++;
if (ind==lc.size()) break;
}
if (pos) ans.push_back(l);
ind=0;
wrong=false;
pos=true;
for (char i: rc) {
if (i!=r[ind]) {
if (!wrong) {
wrong=true;
continue;
} else {
pos=false;
break;
}
}
ind++;
if (ind==rc.size()) break;
}
if (pos) ans.push_back(r);
if (ans.empty()) cout<<"NOT POSSIBLE";
else if (ans.size()>1&&ans[0]!=ans[1]) cout<<"NOT UNIQUE";
else cout<<ans[0];
}
return 0;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |