# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
656211 | 600Mihnea | 세 명의 친구들 (BOI14_friends) | C++17 | 13 ms | 13060 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
bool home = 0;
bool verbose = 1;
#include <bits/stdc++.h>
using namespace std;
int main() {
if (!home) {
verbose = 0;
ios::sync_with_stdio(0);
cin.tie(0);
cout.tie(0);
}
if (home) {
verbose = 1;
freopen ("___input___.txt", "r", stdin);
}
int n;
cin >> n;
if (n % 2 == 0) {
cout << "NOT POSSIBLE\n";
return 0;
}
string s;
cin >> s;
int half = (n - 1) / 2;
string pref(s.begin(), s.begin() + half);
string suf(s.end() - half, s.end());
int cnt = 0;
string goods;
vector<string> trs;
if (pref == suf) {
trs = {pref + pref};
} else {
trs = {pref + pref, suf + suf};
}
for (auto &tr : trs) {
int pcom = 0, scom = 0;
while (pcom < n - 1 && tr[pcom] == s[pcom]) {
pcom++;
}
while (scom < n - 1 && tr[(int) tr.size() - 1 - scom] == s[(int) s.size() - 1 - scom]) {
scom++;
}
if (pcom >= n - 1 - scom) {
cnt++;
goods = tr;
}
}
if (cnt == 0) {
cout << "NOT POSSIBLE\n";
return 0;
}
if (cnt == 2) {
cout << "NOT UNIQUE\n";
return 0;
}
goods.resize(half);
cout << goods << "\n";
return 0;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |