# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
84689 | teomrn | 세 명의 친구들 (BOI14_friends) | C++14 | 85 ms | 25308 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
string ans;
bool uniq;
void proc(string a, string b)
{
if (a.size() < b.size())
swap(a, b);
char c = 0;
int p = 0;
for (auto i : a) {
if (p == b.size() || b[p] != i) {
if (c)
return;
c = i;
p--;
}
p++;
}
if (c) {
if (!ans.empty() && ans != b)
uniq = 1;
ans = b;
}
}
int main()
{
int l;
cin >> l;
string s;
cin >> s;
if (l % 2 == 0) {
cout << "NOT POSSIBLE\n";
return 0;
}
proc(s.substr(0, l / 2), s.substr(l / 2, l / 2 + 1));
proc(s.substr(0, l / 2 + 1), s.substr(l / 2 + 1, l / 2));
if (uniq)
cout << "NOT UNIQUE\n";
else if (ans.empty())
cout << "NOT POSSIBLE\n";
else
cout << ans << '\n';
return 0;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |