# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
938254 | UmairAhmadMirza | 세 명의 친구들 (BOI14_friends) | C++14 | 1065 ms | 36404 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
#define int long long
int const N=2e6+5;
int const mod=1e9+7;
int const base=727;
int Hash[N];
int pw[N];
int n;
string s;
void pre(){
pw[0]=1;
for(int i=1;i<N;i++)
pw[i]=(pw[i-1]*base)%mod;
}
void make_Hash(){
for(int i=1;i<=n;i++)
Hash[i]=((Hash[i-1]*base)+s[i-1])%mod;
}
int compute_Hash(int l,int r){
return ((Hash[r] - ((Hash[l]*pw[r-l])%mod) )+mod)%mod;
}
int org_Hash1(int e){
if(e>n/2)
return Hash[n/2];
int h=(Hash[e-1]*pw[((n/2)+1)-e])%mod;
h+=compute_Hash(e,(n/2)+1);
h%=mod;
return h;
}
int org_Hash2(int e){
if(e<=(n/2)+1)
return compute_Hash((n/2)+1,n);
int h=(compute_Hash((n/2),e-1)*pw[n-e])%mod;
h+=compute_Hash(e,n);
h%=mod;
return h;
}
string make_str(int p){
string st="";
int i=0;
while(st.size()<(n/2)){
if(i==p-1)
continue;
st+=s[i];
i++;
}
return st;
}
signed main()
{
cin>>n;
cin>>s;
if(n%2==0){
cout<<"NOT POSSIBLE\n";
return 0;
}
pre();
make_Hash();
int rem=0;
int cnt=0;
for(int i=1;i<=n;i++){
if(org_Hash1(i)==org_Hash2(i)){
rem=i;
cnt++;
}
}
if(cnt==0)
cout<<"NOT POSSIBLE"<<endl;
else if(cnt>1)
cout<<"NOT UNIQUE"<<endl;
else
cout<<make_str(rem)<<endl;
return 0;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |