QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#127604 | #5577. Alchemy | batrr# | AC ✓ | 1ms | 3616kb | C++17 | 3.1kb | 2023-07-19 20:30:46 | 2023-07-19 20:30:49 |
Judging History
answer
#include <bits/stdc++.h>
#define f first
#define s second
#define pb push_back
#define mp make_pair
using namespace std;
typedef long long ll;
typedef pair<int, int> pii;
typedef pair<long long, long long> pll;
const int N = 300500, inf = 1e9, mod = 998244353;
//const ll INF = 1e18;
int sum(int a, int b) {
a += b;
if (a >= mod)
a -= mod;
return a;
}
int sub(int a, int b) {
a -= b;
if (a < 0)
a += mod;
return a;
}
int mult(int a, int b) {
return 1ll * a * b % mod;
}
int bp(int a, int b) {
int res = 1;
while (b) {
if (b & 1)
res = mult(res, a);
a = mult(a, a);
b >>= 1;
}
return res;
}
int inv(int x) {
return bp(x, mod - 2);
}
string s;
const int maxN = 105;
int n;
int dp[maxN][2][2];
const int INF = 1e9;
void solve() {
cin >> s;
n = s.size();
for (int i = 0; i <= n; i++) {
for (int j = 0; j < 2; j++) {
for (int k = 0; k < 2; k++) {
dp[i][j][k] = INF;
}
}
}
//i, i + 1
//n - i - 1
dp[0][0][0] = 0;
for (int i = 0; i <= (n - 1) / 2; i++) {
for (int x = 0; x < 2; x++) {
for (int y = 0; y < 2; y++) {
if (dp[i][x][y] == INF) continue;
for (int A = 0; A < 2; A++) {
for (int B = 0; B < 2; B++) {
if (n % 2 == 0 && (i == (n - 1) / 2) && (A != B)) continue;
int add = A + B;
if (n % 2 == 0 && (i == (n - 1) / 2)) add -= A;
int opL = x + A;
int opR = y + B;
bool can = false;
for (int z = 0; z < 26; z++) {
int L = s[i] - 'a';
int R = s[n - 1 - i] - 'a';
if (n % 2 == 1 && i == (n - 1) / 2) {
can = true;
break;
}
if (opL >= 2 || (((L != z) && opL == 1)) || (L == z && opL == 0)) {
if (opR >= 2 || (((R != z) && opR == 1)) || (R == z && opR == 0)) {
can = true;
break;
}
}
}
if (can) {
dp[i + 1][A][B] = min(dp[i + 1][A][B], dp[i][x][y] + add);
}
}
}
}
}
}
int best = 1e9;
for (int i = 0; i < 2; i++) {
for (int j = 0; j < 2; j++) {
best = min(best, dp[(n + 1) / 2][i][j]);
}
}
cout << best;
}
int main() {
#ifdef DEBUG
freopen("input.txt", "r", stdin);
#endif
ios_base::sync_with_stdio(false);
int t = 1;
// cin >> t;
for (int i = 1; i <= t; i++) {
// cout << "Case #" << i << endl;
solve();
}
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 1ms
memory: 3608kb
input:
ioi
output:
0
result:
ok single line: '0'
Test #2:
score: 0
Accepted
time: 1ms
memory: 3452kb
input:
noi
output:
1
result:
ok single line: '1'
Test #3:
score: 0
Accepted
time: 1ms
memory: 3440kb
input:
ctsc
output:
1
result:
ok single line: '1'
Test #4:
score: 0
Accepted
time: 1ms
memory: 3436kb
input:
fool
output:
2
result:
ok single line: '2'
Test #5:
score: 0
Accepted
time: 1ms
memory: 3448kb
input:
vetted
output:
2
result:
ok single line: '2'
Test #6:
score: 0
Accepted
time: 1ms
memory: 3368kb
input:
aa
output:
0
result:
ok single line: '0'
Test #7:
score: 0
Accepted
time: 1ms
memory: 3440kb
input:
ic
output:
1
result:
ok single line: '1'
Test #8:
score: 0
Accepted
time: 1ms
memory: 3412kb
input:
tlffohemdcncrfrxaqsbzcoyodvbxmhqukvfpahnakexcmacqa
output:
12
result:
ok single line: '12'
Test #9:
score: 0
Accepted
time: 1ms
memory: 3516kb
input:
qrgld
output:
1
result:
ok single line: '1'
Test #10:
score: 0
Accepted
time: 1ms
memory: 3464kb
input:
ejyfprguvwrnrsrykyrotmdjuzroohvlxqhvyeukkvmshtpczyyecpzhsqvkxueqvhlxldhofrzcjdhtotykgrsdnrnvuyrphyjy
output:
26
result:
ok single line: '26'
Test #11:
score: 0
Accepted
time: 1ms
memory: 3472kb
input:
xcpccpcy
output:
2
result:
ok single line: '2'
Test #12:
score: 0
Accepted
time: 1ms
memory: 3412kb
input:
abpccpcp
output:
1
result:
ok single line: '1'
Test #13:
score: 0
Accepted
time: 0ms
memory: 3364kb
input:
ixpccpci
output:
2
result:
ok single line: '2'
Test #14:
score: 0
Accepted
time: 1ms
memory: 3452kb
input:
xcxccpci
output:
2
result:
ok single line: '2'
Test #15:
score: 0
Accepted
time: 1ms
memory: 3436kb
input:
xcpxcpci
output:
3
result:
ok single line: '3'
Test #16:
score: 0
Accepted
time: 1ms
memory: 3440kb
input:
ixxccpci
output:
1
result:
ok single line: '1'
Test #17:
score: 0
Accepted
time: 1ms
memory: 3476kb
input:
ixpxcpci
output:
2
result:
ok single line: '2'
Test #18:
score: 0
Accepted
time: 0ms
memory: 3472kb
input:
ixpxxycpci
output:
3
result:
ok single line: '3'
Test #19:
score: 0
Accepted
time: 1ms
memory: 3524kb
input:
yxxxyxxxxxyyxxyxxyxyyyxyxyyyyxyxxxxxxxxxxxxyyxxyxyxyyxxyyxyxxyyxxyyyyyyxxyyxxyyxxxxyyyxxxyyxyxyxxyxx
output:
19
result:
ok single line: '19'
Test #20:
score: 0
Accepted
time: 1ms
memory: 3612kb
input:
caacbbacc
output:
2
result:
ok single line: '2'
Test #21:
score: 0
Accepted
time: 1ms
memory: 3404kb
input:
xjnfkxxjfnjx
output:
2
result:
ok single line: '2'
Test #22:
score: 0
Accepted
time: 1ms
memory: 3516kb
input:
baabaaa
output:
2
result:
ok single line: '2'
Test #23:
score: 0
Accepted
time: 1ms
memory: 3476kb
input:
bbaccaabcabca
output:
3
result:
ok single line: '3'
Test #24:
score: 0
Accepted
time: 1ms
memory: 3416kb
input:
ozo
output:
0
result:
ok single line: '0'
Test #25:
score: 0
Accepted
time: 1ms
memory: 3364kb
input:
zoooo
output:
2
result:
ok single line: '2'
Test #26:
score: 0
Accepted
time: 1ms
memory: 3480kb
input:
zooooo
output:
2
result:
ok single line: '2'
Test #27:
score: 0
Accepted
time: 1ms
memory: 3608kb
input:
ccclcclllclllcllcccccclclclclccccccllllllclccclcccllclclcllcllcllccllcllclccllclcclcclclllclllclclcc
output:
16
result:
ok single line: '16'
Test #28:
score: 0
Accepted
time: 1ms
memory: 3552kb
input:
hhzhhhhzzzzhzhzzzhhzzhzzzzhzzhhzhzhhzhhhzzhzzhzzzzhzzzzhzhzhzhzzhhhhzhzzhzhhhzzzhzzhhzzhzzzzhhhzhhzz
output:
22
result:
ok single line: '22'
Test #29:
score: 0
Accepted
time: 1ms
memory: 3452kb
input:
vaaaaaaavvavvaaaaavvavavavvvvvavavvvvvavvvvaavaavavvvvavavvvvavvavvvavvvvvvvavvvavaaavavvaaaavaavvaa
output:
18
result:
ok single line: '18'
Test #30:
score: 0
Accepted
time: 1ms
memory: 3440kb
input:
pjppjjpjpjjpjppjpppjpjjjjjppjjpjppjpjpppjjjppppjpjpjjjpjpjppjpppjjpppppjpjpjjpjjjppjjjpjjjjjpjpjjppj
output:
20
result:
ok single line: '20'
Test #31:
score: 0
Accepted
time: 1ms
memory: 3368kb
input:
xxxlllxllllxlxlxllxlxlxxlxxlxxllxlxxxlxlxllxxllxllxxlxxlxxlllxxxlxxlllxxxlllllxxxxxxxlxlllxxlxlxllll
output:
20
result:
ok single line: '20'
Test #32:
score: 0
Accepted
time: 0ms
memory: 3420kb
input:
gggggvgvgggggvggvggggvvgvgvvgvggvggvgvvgvgvvvvvgvggvvgvgvvvgvvgggvvgggvgggggvggggggvvvggvggggvvgvggg
output:
17
result:
ok single line: '17'
Test #33:
score: 0
Accepted
time: 1ms
memory: 3524kb
input:
vvvbbvvbbvvbbvbvbbbbbbvbvvvbvvbbvbbvvvbbbvbvbbvbvbbvbbvvvbvbbbvbvbbbbbvbbvvvbbbbbvbvvbvvbvbbbbvbbvbb
output:
18
result:
ok single line: '18'
Test #34:
score: 0
Accepted
time: 1ms
memory: 3416kb
input:
ooooeeeeoeoeeoooeeeeeeoooeoooooeeoeoooeeoeeeoeooeooeeeooeeeeoooeeeoooeeeoooooooeoeoeeoeeoooeeooeoooe
output:
20
result:
ok single line: '20'
Test #35:
score: 0
Accepted
time: 1ms
memory: 3472kb
input:
fvfvvffvvfffvfvfffvfvfffffvvvfvfffvffvffvvvfvffvffvffvvfvfffvfvvvfvfvfvfvfvfvffvfvffvffvfvvvfvfffvfv
output:
19
result:
ok single line: '19'
Test #36:
score: 0
Accepted
time: 1ms
memory: 3440kb
input:
vvvnvnnnvnvvvnvnvvvvvnvvnnvnnvnnvvvnvnnvvvnvvnvnnnvnnnnnvvvnnvnvnnvnnvvnnvnnvnvvvvnvvnnnnvvvnnvnnnvn
output:
20
result:
ok single line: '20'
Test #37:
score: 0
Accepted
time: 1ms
memory: 3440kb
input:
vxvexexxexxvvexxeexexvvvxexxxvxeevxeevvexvevxevexevxxvvevvevexexeeexxexvxexeexvxexvevxxxxxxxeevvexev
output:
22
result:
ok single line: '22'
Test #38:
score: 0
Accepted
time: 1ms
memory: 3552kb
input:
fssfkffsfsssffffsskfssssfkffkfksfkssfsffkkfffssksskfkskkkkkkfffffkkkfkkfffffkfsssskkssfksffffffffkff
output:
21
result:
ok single line: '21'
Test #39:
score: 0
Accepted
time: 1ms
memory: 3476kb
input:
effyeyyeeyeefefyeyfffeeeffffyfyefyeyyyfefeffyefyyefyyfyfffyyfyfefefyfyeffyffeyfeefffyyeeeyfyyeffeffy
output:
22
result:
ok single line: '22'
Test #40:
score: 0
Accepted
time: 1ms
memory: 3476kb
input:
attftftaatataftfaftfftffaaafatafattffatfffattatattttffttaffaftaftafffaffatttatatftaafattttffaffttfff
output:
21
result:
ok single line: '21'
Test #41:
score: 0
Accepted
time: 0ms
memory: 3552kb
input:
dxdttddxxtdxxddxxxtdxtdtddtddttxxddddxxdxddttxdxdtttddtdxttdtdxxttdxtxxxtxxdtxxdxtxdtdtxdxttdttxxxxd
output:
21
result:
ok single line: '21'
Test #42:
score: 0
Accepted
time: 1ms
memory: 3548kb
input:
etetetextttxetteexeetttteeetxeeeexxeeettexeteteeexetxtexxxexeeetexxxttxetttxetxetetxxxeexxteteexextt
output:
25
result:
ok single line: '25'
Test #43:
score: 0
Accepted
time: 1ms
memory: 3472kb
input:
cuccddddcuccduuduccdducdcudcdccducdcccccduucdducccuuucddcdccdudddcccddudcdcdududuccdudduduucdduddddu
output:
21
result:
ok single line: '21'
Test #44:
score: 0
Accepted
time: 0ms
memory: 3464kb
input:
eeleleeljljjellejjlejjleelljllllllleljljllelejjeeelllejjjjljeeejjleljlelleejjejeleeleeljejejjjejelee
output:
23
result:
ok single line: '23'
Test #45:
score: 0
Accepted
time: 1ms
memory: 3412kb
input:
kkkvkyvvkykkkkyyyvkyyvvyyvvykvkkvvvyvyyyvykkykyyvvkvvyyyykkkyvkykvyyyvkyvkkkkkkkvvvkvvyvvkkkkkyvvkvv
output:
23
result:
ok single line: '23'
Test #46:
score: 0
Accepted
time: 1ms
memory: 3476kb
input:
fddfftftfdfffdtttdfdffddtdffdtffftdfdffftddddffdddffddtddftfttdtfdtffdftttdtdfdfdddttffftdtfddtttfft
output:
19
result:
ok single line: '19'
Test #47:
score: 0
Accepted
time: 1ms
memory: 3468kb
input:
aoaoaoaaaoaaoaoaoaooaoaoaaooaoaaooaaoooaooaooaaoaooaaaaaoooooaaoaoaoaaaoooaaaooaaaaaaooooaaaaaaaaoo
output:
21
result:
ok single line: '21'
Test #48:
score: 0
Accepted
time: 1ms
memory: 3612kb
input:
yyyyydddyyddyyydddyddddyyyyyyddydydyddyddyydyddddyyddddyyddyyydyddyddddyydyyydddddyddyydddddyyyddyy
output:
20
result:
ok single line: '20'
Test #49:
score: 0
Accepted
time: 1ms
memory: 3448kb
input:
eaeeaaaaeaaeaaaaeeeeaeaeaaaeaeeeaeaaaaaeeaaaeaaeeaaaeeaeeeeaeaeaeaeeaeeaaeaeeaaeaeeaaaeeeeeaaeeaaaa
output:
22
result:
ok single line: '22'
Test #50:
score: 0
Accepted
time: 1ms
memory: 3520kb
input:
yeeyyyyeyyyeyyeeyyyeeyyeeeyyeeyyyeeeeeeyeeyyeeyyeeyyyyeyeeeeeyeyeyeyyeyyyeeeeeeyyeyyeyyyyyyeyyeyeye
output:
21
result:
ok single line: '21'
Test #51:
score: 0
Accepted
time: 1ms
memory: 3364kb
input:
mummmuumuummmuuumumuumummmumumuumuuuuumumuuuumummummmumuummuumummmumuuummmmuummumummuuuuummuumuuumu
output:
22
result:
ok single line: '22'
Test #52:
score: 0
Accepted
time: 1ms
memory: 3584kb
input:
cnnnncncncnccnncnncncccnnccnccnncccnnncccnccccnncnnnnncccnccccnnncccccnccncncncccccncnncnccncnccnnc
output:
18
result:
ok single line: '18'
Test #53:
score: 0
Accepted
time: 1ms
memory: 3428kb
input:
iiirriiirriiiriirrririrrriiririirriiriiriiiirrririrrrrrriirrriiiirriiiiiiiriiiirrririiriiiiirririrr
output:
17
result:
ok single line: '17'
Test #54:
score: 0
Accepted
time: 1ms
memory: 3412kb
input:
kkkkkkekeekkeekekkkeeekkkekeekeekkkeeeeekkekkeekekkekkkeeekeeekeeekkkkkkekkeekkekkekekkeeeekekekeek
output:
19
result:
ok single line: '19'
Test #55:
score: 0
Accepted
time: 1ms
memory: 3464kb
input:
gdddggdddggdddddgggddgdddgggdddgdgdggdgddgdddddgggggddddggggddddgddgdgddgddgggdgdgggddggdgdgddgdgdg
output:
19
result:
ok single line: '19'
Test #56:
score: 0
Accepted
time: 1ms
memory: 3452kb
input:
piipippppippiiiippiiipppiipppiiiiipiippiiiipiipipiiippppippipipippppipiipppippippppipiipippppiipipp
output:
18
result:
ok single line: '18'
Test #57:
score: 0
Accepted
time: 1ms
memory: 3612kb
input:
kfppkkfkpfkppffpppffkkfkpppfkpppppkkfffkkfppfffkfpppkppffpfpkffkkppppkpffpkpkpkkkfkpkfkkpkpkpfkpkpk
output:
19
result:
ok single line: '19'
Test #58:
score: 0
Accepted
time: 1ms
memory: 3616kb
input:
ggaaaamggmmgaagagaagmgggmamgggmmammmaaggggmaaaaggagmmmgmaaggagagmaaammmmammgagmgamgagaaamggaamgagga
output:
21
result:
ok single line: '21'
Test #59:
score: 0
Accepted
time: 1ms
memory: 3612kb
input:
phhnphhnphnphhnnpnhpppnnhnnpphnpnnhhhphnpnnhnpnpphphhhhpphnphnnpphpnhnhnhhhnphhhppnphnphnhhpnhphnhn
output:
23
result:
ok single line: '23'
Test #60:
score: 0
Accepted
time: 1ms
memory: 3556kb
input:
ebbbebeeeeebzzbezzbbbzebzebzeezzeebzzeeebzebebbezezebbeezzzbzbbeezezbbezezbeeebbzebzzezezbbeebzezee
output:
17
result:
ok single line: '17'
Test #61:
score: 0
Accepted
time: 1ms
memory: 3460kb
input:
hhhttatththhaahthhhataaaahaaaahahhaahhtttahhaataaahthhataahaahhttahaththhhhhahaatthaahatahaahaahtha
output:
21
result:
ok single line: '21'
Test #62:
score: 0
Accepted
time: 0ms
memory: 3400kb
input:
ycccsysccsscycsysyyycsyssssscycyyccccycyycssssysscsycscssscscyyycyysycsysyyccscyyscccyycysycsycyycs
output:
20
result:
ok single line: '20'
Test #63:
score: 0
Accepted
time: 0ms
memory: 3440kb
input:
hhphpjhhhjhjphjjpjhpphhhpjppphpjpphjhpppjhhjpphjjphpppjppphppjhhphjpjphjhppjhpppjjjhjhjhjjjjhppphph
output:
23
result:
ok single line: '23'
Test #64:
score: 0
Accepted
time: 1ms
memory: 3360kb
input:
assjjsssajajssssssasjsasjsjjajasjjassaassasaajjssjjsasasaasjjjjasaajsssasaaaasjssjajaasajsajsjsjjja
output:
20
result:
ok single line: '20'
Test #65:
score: 0
Accepted
time: 1ms
memory: 3464kb
input:
cwwkwkcwwcwwckwwwkkcwkcckkkwwcwcwkkkckwkwcwkcckkwkwkkcckckwkwcckcwcwkcwckkckwkwkkcwkkcwwkcccckkwwkk
output:
19
result:
ok single line: '19'
Test #66:
score: 0
Accepted
time: 1ms
memory: 3432kb
input:
plpwplwplpwllppllppllwwpwwwllplwlwwlplwplppwlplwlppwplllwwplpwlwppllpllwllwlwppwlpppwwwwwlppwwplwlp
output:
22
result:
ok single line: '22'
Test #67:
score: 0
Accepted
time: 1ms
memory: 3468kb
input:
cchrrhrwwrrwhwrrcrhwchhhhwwhhwchhcwwrhrwhhwwcwhwrcwwrwrrhhwwrwhcwchcwhwrcwrcrhcrrcrwwcwcrccrccccrrr
output:
22
result:
ok single line: '22'
Test #68:
score: 0
Accepted
time: 1ms
memory: 3452kb
input:
hjjhhrjhhrgrghggrrjrrrrgrjhhjjrrggrjrgjghrrhjghjhrggrjjhrrgrhggrgjgjhjhhghhjrgrhjggggjjhjrhghrhhrhr
output:
19
result:
ok single line: '19'
Test #69:
score: 0
Accepted
time: 1ms
memory: 3444kb
input:
wfwnfnfwccwnfcfwwnfwnfwfcccfccwffnwcncncfcwwnwwccccnnfwccffcfncwfccfwnnnwnwncccfcwfffcnfwwwwwwnncnc
output:
22
result:
ok single line: '22'
Test #70:
score: 0
Accepted
time: 1ms
memory: 3412kb
input:
bgbbwxbxggggxxwwwbbwxxgwgxwgwbxbgbwwwwbgggxwbwxgwxwbxgxwxwbwgbxwxxwwbxbbwxwgwgwxxgxgxwbwxgwxbbwxgbw
output:
23
result:
ok single line: '23'
Test #71:
score: 0
Accepted
time: 1ms
memory: 3616kb
input:
zwzwzzcwczzzzwcwmmzmcczwmwzzzwcccczzwzzzczwcwmccwzmccmwwcccwzcwzcwzmwwzwcmwcccwccwczmmzwzmwcwcwmmcc
output:
22
result:
ok single line: '22'
Test #72:
score: 0
Accepted
time: 1ms
memory: 3460kb
input:
abbbybbaxabbxbyyxbxbxxxxyybbayaabxaxabxybxbybbaaxbyybyyaxybayxyxybxbxbyyaxaybbyyyayyxxbxbabybxabxyy
output:
22
result:
ok single line: '22'
Test #73:
score: 0
Accepted
time: 0ms
memory: 3580kb
input:
grzrzrrrzggggrgzkzrkzrggkgkkkrgzrzkzzgzkrkzkgkkrzzgkzzrzrgkkzkzkgzrkgrgkzgrzrzkgkzrgkrrrrkrrkrrkkzg
output:
24
result:
ok single line: '24'
Test #74:
score: 0
Accepted
time: 1ms
memory: 3464kb
input:
xxmxyxdmdyymmxmmxdmyyyxmdmxymxyymmyyymdymyydxymyxxyyddmdydyxxdmxxdyxdmdyxyddxdxydxddmmyxyydymmymddm
output:
21
result:
ok single line: '21'
Test #75:
score: 0
Accepted
time: 1ms
memory: 3400kb
input:
grgffrrgfrrrfbfgbbrfggbrbbbgfrbgrbgfgfgbgfbrrrrrbfbgbbbbfffbfrrrrfrrbbgfgffrfbggrrrfbrrgrgfrffrbrgr
output:
24
result:
ok single line: '24'
Test #76:
score: 0
Accepted
time: 1ms
memory: 3612kb
input:
wgfguufuufgwfugwwugffgwgffgufgfufugwffgwuwguwufuguwuwwfwuwfguguuugfggufgufuwufuwfwwwwgwgwgfgffuuguu
output:
23
result:
ok single line: '23'