# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1112217 | lucascgar | 세 명의 친구들 (BOI14_friends) | C++17 | 1068 ms | 6476 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
/*
*/
typedef pair<int, int> pii;
typedef pair<long long, long long> pll;
typedef pair<long double, long double> pdd;
const int MAXN = 2e6+11;
signed main(){
std::ios_base::sync_with_stdio(false);
cin.tie(nullptr);
int n;
cin >> n;
string s;
cin >> s;
if (s.size()%2 == 0){
cout << "NOT POSSIBLE\n";
return 0;
}
vector<int> fans;
int sz = n/2;
// meio
for (int i=0;i<n;i++){
if (i>0 && s[i] == s[i-1]){
continue;
}
string a, b;
int j = 0;
while (a.size()<sz){
if (j!=i) a.push_back(s[j]);
j++;
}
while (b.size()<sz){
if (j!=i) b.push_back(s[j]);
j++;
}
if (a==b) fans.push_back(i);
}
if (fans.empty()){
cout << "NOT POSSIBLE\n";
}else if (fans.size()>1){
cout << "NOT UNIQUE\n";
// for (auto &x:fans) cerr << x << '\n';
}
else{
int x = fans.back(), q=0, j=0;
while (q<sz){
if (j!=x){
cout << s[j];
q++;
}
j++;
}
cout << '\n';
}
return 0;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |