# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
243827 | kimbj0709 | 세 명의 친구들 (BOI14_friends) | C++14 | 93 ms | 26736 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
#define int long long
#define mod 1000000009
#define po 179
#define maxn 2000050
vector<int> powers(maxn,1);
int len;
string find(string input){
string ret = "";
int can1 = 0;
int currsum = 0;
int target = 0;
for(int i=1;i<len/2+1;i++){
currsum += (input.at(i)-'A')*powers[i-1];
currsum %= mod;
}
for(int i=len/2+1;i<len;i++){
target += (input.at(i)-'A')*powers[i-len/2-1];
target %= mod;
}
if(currsum==target){
can1++;
}
for(int i=0;i<len/2;i++){
currsum -= (input.at(i+1)-'A')*powers[i];
currsum += (input.at(i)-'A')*powers[i];
currsum %= mod;
currsum += mod*2;
currsum %= mod;
if(currsum==target){
can1++;
}
}
if(can1>0){
for(int j=input.length()-1;j>input.length()-1-input.length()/2;j--){
ret += input.at(j);
}
reverse(ret.begin(),ret.end());
}
return ret;
}
int32_t main() {
ios::sync_with_stdio(0);
cin.tie(0);cout.tie(0);
string input;
cin >> len >> input;
if(len%2==0){
cout << "NOT POSSIBLE";
return 0;
}
for(int i=1;i<powers.size();i++){
powers[i] = powers[i-1]*po;
powers[i] %= mod;
}
string temp1 = find(input);
reverse(input.begin(),input.end());
string temp2 = find(input);
reverse(temp2.begin(),temp2.end());
if(temp1.length()==0&&temp2.length()==0){
cout << "NOT POSSIBLE";
}
else if(temp1.length()==0&&temp2.length()!=0){
cout << temp2;
}
else if(temp1.length()!=0&&temp2.length()==0){
cout << temp1;
}
else if(temp1!=temp2){
cout << "NOT UNIQUE";
}
else{
cout << temp1;
}
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |