# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
38466 | oTTo_22 | 세 명의 친구들 (BOI14_friends) | C++14 | 500 ms | 15984 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define fi first
#define se second
#define ll long long
const int INF=1e9+1;
const int MAXN=1e5+1;
const int MOD=13371337;
using namespace std;
vector < int > pfunc(string str){
vector < int > p(str.size());
int j=0;
for (int i=1; i<str.size(); i++) {
while (j>0 && str[j]!=str[i])
j=p[j-1];
if (str[j]==str[i])
j++;
p[i]=j;
}
return p;
}
int main() {
ios_base::sync_with_stdio(false);
cin.tie(0);
//freopen("input.txt","r",stdin);
//freopen("output.txt","w",stdout);
int n;
string s;
cin >> n >> s;
if (n%2==0) {
cout << "NOT POSSIBLE";
return 0;
}
bool cnt=0;
string ans;
for (int i=0; i<n; i++) {
string st=s;
st.erase(i,1);
vector < int > p=pfunc(st);
//for (int i=0; i<n-1; i++)
// cout << p[i] << " ";
//cout << "\n";
if (p[n-2]>=(n-1)/2) {
if (cnt) {
cout << "NOT UNIQUE";
return 0;
}
else {
cnt++;
for (int j=0; j<(n-1)/2; j++)
ans+=st[j];
}
}
}
if (cnt==0)
cout << "NOT POSSIBLE";
else
cout << ans;
return 0;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |