# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
705638 | stevancv | 세 명의 친구들 (BOI14_friends) | C++14 | 69 ms | 32912 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define ll long long
#define ld long double
#define sp ' '
#define en '\n'
#define smin(a, b) a = min(a, b)
#define smax(a, b) a = max(a, b)
using namespace std;
const int N = 2e6 + 5;
const int inf = 2e9;
const int mod = 1e9 + 7;
int a[N], prv[N];
int main() {
ios::sync_with_stdio(false);
cin.tie(0);
cout.tie(0);
int n;
string s;
cin >> n >> s;
vector<vector<int>> p(26);
for (int i = 0; i < n; i++) {
if (!p[s[i] - 'A'].empty()) prv[i] = p[s[i] - 'A'].back();
else prv[i] = -1;
p[s[i] - 'A'].push_back(i);
}
int odd = 0;
for (int i = 0; i < 26; i++) {
odd += p[i].size() % 2;
}
if (odd != 1) {
cout << "NOT POSSIBLE" << en;
return 0;
}
int who = -1;
int good = 0;
for (int i = 0; i < 26; i++) {
int y = p[i].size() / 2;
for (int j = 0; j < y; j++) {
a[p[i][j]] = p[i][j + y];
a[p[i][j + y]] = p[i][j];
if (p[i][j + y] - p[i][j] == n / 2) good += 1;
}
if (p[i].size() % 2 == 1) who = i;
}
vector<string> ans;
for (int i = n - 1; i >= 0; i--) {
if (s[i] - 'A' == who) {
if (good == n / 2 && (ans.empty() || i == 0)) {
string tmp = "";
for (int j = 0; tmp.size() < n / 2; j++) {
if (i == j) continue;
tmp += s[j];
}
ans.push_back(tmp);
}
int p = a[prv[i]];
int q = prv[i];
if (abs(p - q) == n / 2 + (p > q)) good -= 1;
a[p] = i;
a[i] = p;
if (abs(p - i) == n / 2 + (p < q)) good += 1;
continue;
}
if (i > a[i] && abs(a[i] - i) == n / 2) good -= 1;
if (i < a[i] && abs(a[i] - i) == n / 2 + 1) good -= 1;
if (i > a[i] && abs(a[i] - i) == n / 2 + 1) good += 1;
if (i < a[i] && abs(a[i] - i) == n / 2) good += 1;
}
if (ans.size() == 0) cout << "NOT POSSIBLE" << en;
else if (ans.size() == 1 || (ans.size() == 2 && ans[0] == ans[1])) cout << ans[0] << en;
else cout << "NOT UNIQUE" << en;
return 0;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |