Task: | Shortest palindrome |
Sender: | aalto2024h_005 |
Submission time: | 2024-10-23 16:42:14 +0300 |
Language: | C++ (C++11) |
Status: | READY |
Result: | WRONG ANSWER |
test | verdict | time | |
---|---|---|---|
#1 | ACCEPTED | 0.00 s | details |
#2 | ACCEPTED | 0.00 s | details |
#3 | ACCEPTED | 0.00 s | details |
#4 | ACCEPTED | 0.00 s | details |
#5 | ACCEPTED | 0.00 s | details |
#6 | ACCEPTED | 0.00 s | details |
#7 | ACCEPTED | 0.00 s | details |
#8 | ACCEPTED | 0.00 s | details |
#9 | ACCEPTED | 0.00 s | details |
#10 | ACCEPTED | 0.00 s | details |
#11 | ACCEPTED | 0.00 s | details |
#12 | ACCEPTED | 0.00 s | details |
#13 | ACCEPTED | 0.00 s | details |
#14 | ACCEPTED | 0.00 s | details |
#15 | ACCEPTED | 0.00 s | details |
#16 | ACCEPTED | 0.00 s | details |
#17 | ACCEPTED | 0.00 s | details |
#18 | ACCEPTED | 0.00 s | details |
#19 | ACCEPTED | 0.00 s | details |
#20 | ACCEPTED | 0.00 s | details |
#21 | ACCEPTED | 0.00 s | details |
#22 | ACCEPTED | 0.00 s | details |
#23 | ACCEPTED | 0.00 s | details |
#24 | ACCEPTED | 0.00 s | details |
#25 | ACCEPTED | 0.01 s | details |
#26 | ACCEPTED | 0.00 s | details |
#27 | ACCEPTED | 0.00 s | details |
#28 | WRONG ANSWER | 0.00 s | details |
#29 | ACCEPTED | 0.00 s | details |
#30 | ACCEPTED | 0.00 s | details |
#31 | ACCEPTED | 0.00 s | details |
#32 | WRONG ANSWER | 0.00 s | details |
#33 | ACCEPTED | 0.00 s | details |
#34 | ACCEPTED | 0.00 s | details |
#35 | ACCEPTED | 0.00 s | details |
#36 | WRONG ANSWER | 0.00 s | details |
#37 | ACCEPTED | 0.01 s | details |
#38 | WRONG ANSWER | 0.00 s | details |
#39 | ACCEPTED | 0.00 s | details |
#40 | ACCEPTED | 0.00 s | details |
#41 | ACCEPTED | 0.00 s | details |
#42 | WRONG ANSWER | 0.00 s | details |
#43 | ACCEPTED | 0.00 s | details |
#44 | WRONG ANSWER | 0.00 s | details |
#45 | ACCEPTED | 0.00 s | details |
#46 | WRONG ANSWER | 0.00 s | details |
#47 | ACCEPTED | 0.00 s | details |
#48 | WRONG ANSWER | 0.00 s | details |
#49 | ACCEPTED | 0.00 s | details |
#50 | WRONG ANSWER | 0.00 s | details |
#51 | WRONG ANSWER | 0.00 s | details |
#52 | WRONG ANSWER | 0.00 s | details |
#53 | ACCEPTED | 0.00 s | details |
#54 | WRONG ANSWER | 0.00 s | details |
#55 | ACCEPTED | 0.00 s | details |
#56 | WRONG ANSWER | 0.00 s | details |
#57 | ACCEPTED | 0.00 s | details |
#58 | WRONG ANSWER | 0.00 s | details |
#59 | WRONG ANSWER | 0.36 s | details |
#60 | WRONG ANSWER | 0.36 s | details |
#61 | WRONG ANSWER | 0.34 s | details |
#62 | WRONG ANSWER | 0.34 s | details |
#63 | ACCEPTED | 0.35 s | details |
#64 | WRONG ANSWER | 0.34 s | details |
#65 | ACCEPTED | 0.35 s | details |
#66 | WRONG ANSWER | 0.38 s | details |
#67 | ACCEPTED | 0.34 s | details |
#68 | WRONG ANSWER | 0.35 s | details |
Compiler report
input/code.cpp: In function 'int main()': input/code.cpp:49:19: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare] 49 | for(int i=0; i< s.size(); i++){ | ~^~~~~~~~~~ input/code.cpp:54:14: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare] 54 | if(total == s.size()){ | ~~~~~~^~~~~~~~~~~
Code
#include <iostream> #include <string> using namespace std; int palind(string s, int i){ int n = s.size(); if(i==0){ if(n>=2 and s[0]==s[1]){ return 2; } return 1; } if(i==n-1)return 1; int max1=1; int idx0=1; while((i+idx0)<n and (i-idx0)>=0 and s[(i+idx0)]==s[(i-idx0)]){ max1 += 2; idx0 += 1; } int max2=1; if(i+1 < n and s[i+1]==s[i]){ max2 = 2; int idx1 = 1; while((i+idx1+1)<n and (i-idx1)>=0 and s[(i+idx1+1)]==s[(i-idx1)]){ max2 += 2; idx1 += 1; } } if(max2 > max1) return max2; return max1; } int main(){ string s; cin >> s; int total = 1; for(int i=0; i< s.size(); i++){ int a = palind(s,i); if(a>total) total = a; } if(total == s.size()){ if(total-2 == 0 or total-2==1)cout<<-1<<endl; else cout << total-2 << endl; } else if(total==1)cout<<-1<<endl; else cout << total << endl; }
Test details
Test 1
Verdict: ACCEPTED
input |
---|
sl |
correct output |
---|
-1 |
user output |
---|
-1 |
Test 2
Verdict: ACCEPTED
input |
---|
uz |
correct output |
---|
-1 |
user output |
---|
-1 |
Test 3
Verdict: ACCEPTED
input |
---|
vum |
correct output |
---|
-1 |
user output |
---|
-1 |
Test 4
Verdict: ACCEPTED
input |
---|
ltw |
correct output |
---|
-1 |
user output |
---|
-1 |
Test 5
Verdict: ACCEPTED
input |
---|
srhm |
correct output |
---|
-1 |
user output |
---|
-1 |
Test 6
Verdict: ACCEPTED
input |
---|
agwj |
correct output |
---|
-1 |
user output |
---|
-1 |
Test 7
Verdict: ACCEPTED
input |
---|
vcgm |
correct output |
---|
-1 |
user output |
---|
-1 |
Test 8
Verdict: ACCEPTED
input |
---|
cwld |
correct output |
---|
-1 |
user output |
---|
-1 |
Test 9
Verdict: ACCEPTED
input |
---|
psvpw |
correct output |
---|
-1 |
user output |
---|
-1 |
Test 10
Verdict: ACCEPTED
input |
---|
zsyad |
correct output |
---|
-1 |
user output |
---|
-1 |
Test 11
Verdict: ACCEPTED
input |
---|
eayoy |
correct output |
---|
3 |
user output |
---|
3 |
Test 12
Verdict: ACCEPTED
input |
---|
bsvhd |
correct output |
---|
-1 |
user output |
---|
-1 |
Test 13
Verdict: ACCEPTED
input |
---|
xezws |
correct output |
---|
-1 |
user output |
---|
-1 |
Test 14
Verdict: ACCEPTED
input |
---|
bwvfj |
correct output |
---|
-1 |
user output |
---|
-1 |
Test 15
Verdict: ACCEPTED
input |
---|
yfvbj |
correct output |
---|
-1 |
user output |
---|
-1 |
Test 16
Verdict: ACCEPTED
input |
---|
fuilz |
correct output |
---|
-1 |
user output |
---|
-1 |
Test 17
Verdict: ACCEPTED
input |
---|
agwjn |
correct output |
---|
-1 |
user output |
---|
-1 |
Test 18
Verdict: ACCEPTED
input |
---|
jnmma |
correct output |
---|
2 |
user output |
---|
2 |
Test 19
Verdict: ACCEPTED
input |
---|
psvpwowlqj |
correct output |
---|
3 |
user output |
---|
3 |
Test 20
Verdict: ACCEPTED
input |
---|
zsyadhzdgc |
correct output |
---|
-1 |
user output |
---|
-1 |
Test 21
Verdict: ACCEPTED
input |
---|
eayoylmkie |
correct output |
---|
3 |
user output |
---|
3 |
Test 22
Verdict: ACCEPTED
input |
---|
bsvhdnoxlx |
correct output |
---|
3 |
user output |
---|
3 |
Test 23
Verdict: ACCEPTED
input |
---|
xezwspfdzf |
correct output |
---|
-1 |
user output |
---|
-1 |
Test 24
Verdict: ACCEPTED
input |
---|
bwvfjxzmcp |
correct output |
---|
-1 |
user output |
---|
-1 |
Test 25
Verdict: ACCEPTED
input |
---|
yfvbjczpcn |
correct output |
---|
-1 |
user output |
---|
-1 |
Test 26
Verdict: ACCEPTED
input |
---|
fuilzslzio |
correct output |
---|
-1 |
user output |
---|
-1 |
Test 27
Verdict: ACCEPTED
input |
---|
agwjnvgkap |
correct output |
---|
-1 |
user output |
---|
-1 |
Test 28
Verdict: WRONG ANSWER
input |
---|
jnmmadidaf |
correct output |
---|
2 |
user output |
---|
5 |
Test 29
Verdict: ACCEPTED
input |
---|
psvpwowlqjlhxbzhjmuvnmokyvbicq... |
correct output |
---|
3 |
user output |
---|
3 |
Test 30
Verdict: ACCEPTED
input |
---|
zsyadhzdgckekirkyowkirnflwfanr... |
correct output |
---|
3 |
user output |
---|
3 |
Test 31
Verdict: ACCEPTED
input |
---|
eayoylmkiefsqdhmgqvnrdmnpesugw... |
correct output |
---|
3 |
user output |
---|
3 |
Test 32
Verdict: WRONG ANSWER
input |
---|
bsvhdnoxlxadbfgbclsadlqfhjrmpx... |
correct output |
---|
3 |
user output |
---|
5 |
Test 33
Verdict: ACCEPTED
input |
---|
xezwspfdzfasgxlquafowjzpekpvap... |
correct output |
---|
-1 |
user output |
---|
-1 |
Test 34
Verdict: ACCEPTED
input |
---|
bwvfjxzmcpktjnmhzevcqtvlgetwch... |
correct output |
---|
3 |
user output |
---|
3 |
Test 35
Verdict: ACCEPTED
input |
---|
yfvbjczpcnpknimqvltkngpeqszxvm... |
correct output |
---|
-1 |
user output |
---|
-1 |
Test 36
Verdict: WRONG ANSWER
input |
---|
fuilzslziogncbkgamnrwuijkbrhrx... |
correct output |
---|
2 |
user output |
---|
3 |
Test 37
Verdict: ACCEPTED
input |
---|
agwjnvgkapltknwmyodstksvqaljhm... |
correct output |
---|
-1 |
user output |
---|
-1 |
Test 38
Verdict: WRONG ANSWER
input |
---|
jnmmadidafwkdgdckimeiwjytbzsso... |
correct output |
---|
2 |
user output |
---|
5 |
Test 39
Verdict: ACCEPTED
input |
---|
psvpwowlqjlhxbzhjmuvnmokyvbicq... |
correct output |
---|
3 |
user output |
---|
3 |
Test 40
Verdict: ACCEPTED
input |
---|
zsyadhzdgckekirkyowkirnflwfanr... |
correct output |
---|
3 |
user output |
---|
3 |
Test 41
Verdict: ACCEPTED
input |
---|
eayoylmkiefsqdhmgqvnrdmnpesugw... |
correct output |
---|
3 |
user output |
---|
3 |
Test 42
Verdict: WRONG ANSWER
input |
---|
bsvhdnoxlxadbfgbclsadlqfhjrmpx... |
correct output |
---|
3 |
user output |
---|
5 |
Test 43
Verdict: ACCEPTED
input |
---|
xezwspfdzfasgxlquafowjzpekpvap... |
correct output |
---|
-1 |
user output |
---|
-1 |
Test 44
Verdict: WRONG ANSWER
input |
---|
bwvfjxzmcpktjnmhzevcqtvlgetwch... |
correct output |
---|
2 |
user output |
---|
3 |
Test 45
Verdict: ACCEPTED
input |
---|
yfvbjczpcnpknimqvltkngpeqszxvm... |
correct output |
---|
-1 |
user output |
---|
-1 |
Test 46
Verdict: WRONG ANSWER
input |
---|
fuilzslziogncbkgamnrwuijkbrhrx... |
correct output |
---|
2 |
user output |
---|
3 |
Test 47
Verdict: ACCEPTED
input |
---|
agwjnvgkapltknwmyodstksvqaljhm... |
correct output |
---|
-1 |
user output |
---|
-1 |
Test 48
Verdict: WRONG ANSWER
input |
---|
jnmmadidafwkdgdckimeiwjytbzsso... |
correct output |
---|
2 |
user output |
---|
5 |
Test 49
Verdict: ACCEPTED
input |
---|
psvpwowlqjlhxbzhjmuvnmokyvbicq... |
correct output |
---|
3 |
user output |
---|
3 |
Test 50
Verdict: WRONG ANSWER
input |
---|
zsyadhzdgckekirkyowkirnflwfanr... |
correct output |
---|
3 |
user output |
---|
5 |
Test 51
Verdict: WRONG ANSWER
input |
---|
eayoylmkiefsqdhmgqvnrdmnpesugw... |
correct output |
---|
3 |
user output |
---|
5 |
Test 52
Verdict: WRONG ANSWER
input |
---|
bsvhdnoxlxadbfgbclsadlqfhjrmpx... |
correct output |
---|
3 |
user output |
---|
5 |
Test 53
Verdict: ACCEPTED
input |
---|
xezwspfdzfasgxlquafowjzpekpvap... |
correct output |
---|
-1 |
user output |
---|
-1 |
Test 54
Verdict: WRONG ANSWER
input |
---|
bwvfjxzmcpktjnmhzevcqtvlgetwch... |
correct output |
---|
2 |
user output |
---|
4 |
Test 55
Verdict: ACCEPTED
input |
---|
yfvbjczpcnpknimqvltkngpeqszxvm... |
correct output |
---|
-1 |
user output |
---|
-1 |
Test 56
Verdict: WRONG ANSWER
input |
---|
fuilzslziogncbkgamnrwuijkbrhrx... |
correct output |
---|
2 |
user output |
---|
5 |
Test 57
Verdict: ACCEPTED
input |
---|
agwjnvgkapltknwmyodstksvqaljhm... |
correct output |
---|
-1 |
user output |
---|
-1 |
Test 58
Verdict: WRONG ANSWER
input |
---|
jnmmadidafwkdgdckimeiwjytbzsso... |
correct output |
---|
2 |
user output |
---|
6 |
Test 59
Verdict: WRONG ANSWER
input |
---|
psvpwowlqjlhxbzhjmuvnmokyvbicq... |
correct output |
---|
3 |
user output |
---|
7 |
Test 60
Verdict: WRONG ANSWER
input |
---|
zsyadhzdgckekirkyowkirnflwfanr... |
correct output |
---|
3 |
user output |
---|
9 |
Test 61
Verdict: WRONG ANSWER
input |
---|
eayoylmkiefsqdhmgqvnrdmnpesugw... |
correct output |
---|
3 |
user output |
---|
11 |
Test 62
Verdict: WRONG ANSWER
input |
---|
bsvhdnoxlxadbfgbclsadlqfhjrmpx... |
correct output |
---|
3 |
user output |
---|
9 |
Test 63
Verdict: ACCEPTED
input |
---|
xezwspfdzfasgxlquafowjzpekpvap... |
correct output |
---|
-1 |
user output |
---|
-1 |
Test 64
Verdict: WRONG ANSWER
input |
---|
bwvfjxzmcpktjnmhzevcqtvlgetwch... |
correct output |
---|
2 |
user output |
---|
8 |
Test 65
Verdict: ACCEPTED
input |
---|
yfvbjczpcnpknimqvltkngpeqszxvm... |
correct output |
---|
-1 |
user output |
---|
-1 |
Test 66
Verdict: WRONG ANSWER
input |
---|
fuilzslziogncbkgamnrwuijkbrhrx... |
correct output |
---|
2 |
user output |
---|
7 |
Test 67
Verdict: ACCEPTED
input |
---|
agwjnvgkapltknwmyodstksvqaljhm... |
correct output |
---|
-1 |
user output |
---|
-1 |
Test 68
Verdict: WRONG ANSWER
input |
---|
jnmmadidafwkdgdckimeiwjytbzsso... |
correct output |
---|
2 |
user output |
---|
9 |