又是一道关于字符串的DP题

    xiaoxiao2021-03-25  278

    How to Type

    Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others) Total Submission(s): 6635    Accepted Submission(s): 2991

    Problem Description

    Pirates have finished developing the typing software. He called Cathy to test his typing software. She is good at thinking. After testing for several days, she finds that if she types a string by some ways, she will type the key at least. But she has a bad habit that if the caps lock is on, she must turn off it, after she finishes typing. Now she wants to know the smallest times of typing the key to finish typing a string.

     

     

    Input

    The first line is an integer t (t<=100), which is the number of test case in the input file. For each test case, there is only one string which consists of lowercase letter and upper case letter. The length of the string is at most 100.

     

     

    Output

    For each test case, you must output the smallest times of typing the key to finish typing this string.

     

     

    Sample Input

    3

    Pirates

    HDUacm

    HDUACM

     

     

    Sample Output

    8

    8

    8

    Hint

     

    The string “Pirates”, can type this way, Shift, p, i, r, a, t, e, s, the answer is 8.

    The string “HDUacm”, can type this way, Caps lock, h, d, u, Caps lock, a, c, m, the answer is 8

    The string "HDUACM", can type this way Caps lock h, d, u, a, c, m, Caps lock, the answer is 

    DP的三个特征:最优化原理,子问题重叠,无后效性。额,符合最优化,子问题重叠没想出来,无后效性符合。

    #include<iostream> #include<stdio.h> #include<string.h> #include<string> #include<algorithm> using namespace std; int dp[110][2]; int t; char s[110]; int main() { cin>>t; while(t--) { scanf("%s",s+1); memset(dp,0,sizeof(dp)); dp[0][0]=0; dp[0][1]=1; int i; for(i=1; s[i] ; i++) { if(s[i]>='A' && s[i]<='Z') { dp[i][0]=min(dp[i-1][0]+2,dp[i-1][1]+2); dp[i][1]=min(dp[i-1][0]+2,dp[i-1][1]+1); } else { dp[i][0]=min(dp[i-1][0]+1,dp[i-1][1]+2); dp[i][1]=min(dp[i-1][0]+2,dp[i-1][1]+2); } } printf("%d\n",min(dp[i-1][0],dp[i-1][1]+1)); } return 0; }

    转载请注明原文地址: https://ju.6miu.com/read-33.html

    最新回复(0)