# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
938399 | Ghulam_Junaid | 세 명의 친구들 (BOI14_friends) | C++17 | 42 ms | 13632 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
const ll mod = 1e9 + 7;
const ll base = 727;
ll k;
set<int> st;
void check(string s, string t, bool is_suff){
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())
st.insert(ind + k * is_suff);
j = t.size() - 1;
ind = 0;
for (int i = s.size() - 1; i >= 0 and j >= 0;){
if (s[i] == t[j]){
i--;
j--;
}
else{
ind = j;
j--;
}
}
if (i == -1)
st.insert(ind + k * is_suff);
}
int main(){
ll n;
string s;
cin >> n >> s;
if (n % 2 == 0){
cout << "NOT POSSIBLE" << endl;
return 0;
}
k = n / 2;
ll poss = 0;
string P, S;
for (ll i = 0; i < k; i ++)
P += s[i];
for (ll i = k + 1; i < n; i ++)
S += s[i];
string ans;
string Q = s[k] + S;
check(P, Q, 1);
if (st.size())
ans = P;
int prev = st.size();
Q = P + s[k];
check(S, Q, 0);
if (st.size() - prev)
ans = S;
if (st.size() > 1)
cout << "NOT UNIQUE" << endl;
else if (st.size() == 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... |