# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
134997 | Kenzo_1114 | 회문 (APIO14_palindrome) | C++14 | 1063 ms | 50264 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
using namespace std;
const int MAXN=10010;
map<string,int> resp;
map<string,int>::iterator mit;
string word;
char aux[MAXN];
long long int RESP;
void valid(int i,int j)
{
int mid=(j-i)/2, cont=0, ok=1;
char novo[MAXN];
for(int k=0;k<=mid;k++)
if(word[i+k]!=word[j-k]) ok=0;
if(ok)
for(int k=i;k<=j;k++)
novo[cont]=word[k], cont++;
novo[cont]='\0';
// printf("i = %d j = %d ok = %d novo = %s\n",i,j,ok,novo);
if(ok) resp[(string)novo]++;
}
int main ()
{
scanf(" %s",aux);
word=(string)aux;
for(int i=0;i<word.size();i++)
{
for(int j=i;j<word.size();j++)
{
valid(i,j);
}
}
for(mit=resp.begin();mit!=resp.end();mit++)
{
RESP=max(RESP,(long long int )(*mit).first.size()*(*mit).second);
}
printf("%lld\n",RESP);
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |