# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
938418 | Ghulam_Junaid | 세 명의 친구들 (BOI14_friends) | C++17 | 43 ms | 11804 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
ll k;
bool check(string s, string t){
int j = 0;
int i = 0;
int ind = t.size() - 1;
for (; i < s.size() and j < t.size();){
if (s[i] == t[j]){
i++;
j++;
}
else{
ind = j;
j++;
}
}
if (i == s.size())
return 1;
j = t.size() - 1;
i = s.size() - 1;
ind = 0;
for (; i >= 0 and j >= 0;){
if (s[i] == t[j]){
i--;
j--;
}
else{
ind = j;
j--;
}
}
if (i == -1)
return 1;
return 0;
}
int main(){
ll n;
string s;
cin >> n >> s;
n = s.size();
if (n % 2 == 0){
cout << "NOT POSSIBLE" << endl;
return 0;
}
k = n / 2;
string P, S;
for (ll i = 0; i < k; i ++)
P += s[i];
for (ll i = k + 1; i < n; i ++)
S += s[i];
if (P == S){
cout << P << endl;
return 0;
}
string ans;
string Q = s[k] + S;
int poss = check(P, Q);
if (poss)
ans = P;
int prev = poss;
Q = P + s[k];
poss += check(S, Q);
if (poss - prev)
ans = S;
if (poss > 1)
cout << "NOT UNIQUE" << endl;
else if (poss == 0)
cout << "NOT POSSIBLE" << endl;
else
cout << ans << endl;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |