# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
880873 | happiansf | 세 명의 친구들 (BOI14_friends) | C++17 | 95 ms | 52268 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <cstdio>
using namespace std;
#define N 2000001
#define A 29
#define P 10000007
int n;
int cnt, ans;
long long a[N + 1];
long long front_hash[N + 2];
long long back_hash[N + 2];
void input()
{
char temp[N + 2];
scanf("%d", &n);
scanf("%s", &temp[1]);
for(int i = 1; i <= n; i++)
{
a[i] = temp[i] - 'A';
}
//printf("%s", &temp[1]);
}
void check_front()
{
long long pow_A = 1;
long long ans_hash = 0;
long long check_hash;
for(int i = n / 2 + 2; i <= n; i++)
{
ans_hash = (ans_hash * A + a[i]) % P;
}
front_hash[0] = 0;
for(int i = 1; i <= n / 2 + 1; i++)
{
front_hash[i] = (front_hash[i - 1] * A + a[i]) % P;
}
back_hash[n / 2 + 2] = 0;
for(int i = n / 2 + 1; i >= 1; i--)
{
back_hash[i] = (back_hash[i + 1] + pow_A * a[i]) % P;
pow_A = (pow_A * A) % P;
}
pow_A = 1;
for(int i = n / 2 + 1; i >= 1; i--)
{
check_hash = (front_hash[i - 1] * pow_A + back_hash[i + 1]) % P;
pow_A = (pow_A * A) % P;
if(check_hash == ans_hash)
{
cnt++;
ans = 1;
}
}
}
void check_back()
{
long long pow_A = 1;
long long ans_hash = 0;
long long check_hash;
for(int i = 1; i <= n / 2; i++)
{
ans_hash = (ans_hash * A + a[i]) % P;
}
front_hash[n / 2] = 0;
for(int i = n / 2 + 1; i <= n; i++)
{
front_hash[i] = (front_hash[i - 1] * A + a[i]) % P;
}
back_hash[n + 1] = 0;
for(int i = n; i >= n / 2 + 1; i--)
{
back_hash[i] = (back_hash[i + 1] + pow_A * a[i]) % P;
pow_A = (pow_A * A) % P;
}
pow_A = 1;
for(int i = n; i >= n / 2 + 1; i--)
{
check_hash = (front_hash[i - 1] * pow_A + back_hash[i + 1]) % P;
pow_A = (pow_A * A) % P;
if(check_hash == ans_hash)
{
cnt++;
ans = 2;
}
}
}
void core()
{
if(n % 2 == 0)
{
printf("NOT POSSIBLE");
return;
}
check_front();
check_back();
if(cnt == 0)
{
printf("NOT POSSIBLE");
}
else if(cnt >= 2)
{
printf("NOT UNIQUE");
}
else
{
if(ans == 2)
{
for(int i = 1; i <= n / 2; i++)
{
printf("%c", a[i] + 'A');
}
}
else
{
for(int i = n / 2 + 2; i <= n; i++)
{
printf("%c", a[i] + 'A');
}
}
}
}
int main()
{
input();
core();
return 0;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |