zoukankan      html  css  js  c++  java
  • POJ_3280_Cheapest_Palindrome_(动态规划)

    描述


    http://poj.org/problem?id=3280

    n 种小写字母构成长度为 m 的串,现在要通过增删字母使串回文,给出每种字母增和删的费用,求最小花费.

    Cheapest Palindrome
    Time Limit: 2000MS   Memory Limit: 65536K
    Total Submissions: 8040   Accepted: 3906

    Description

    Keeping track of all the cows can be a tricky task so Farmer John has installed a system to automate it. He has installed on each cow an electronic ID tag that the system will read as the cows pass by a scanner. Each ID tag's contents are currently a single string with length M (1 ≤ M ≤ 2,000) characters drawn from an alphabet of N (1 ≤ N ≤ 26) different symbols (namely, the lower-case roman alphabet).

    Cows, being the mischievous creatures they are, sometimes try to spoof the system by walking backwards. While a cow whose ID is "abcba" would read the same no matter which direction the she walks, a cow with the ID "abcb" can potentially register as two different IDs ("abcb" and "bcba").

    FJ would like to change the cows's ID tags so they read the same no matter which direction the cow walks by. For example, "abcb" can be changed by adding "a" at the end to form "abcba" so that the ID is palindromic (reads the same forwards and backwards). Some other ways to change the ID to be palindromic are include adding the three letters "bcb" to the begining to yield the ID "bcbabcb" or removing the letter "a" to yield the ID "bcb". One can add or remove characters at any location in the string yielding a string longer or shorter than the original string.

    Unfortunately as the ID tags are electronic, each character insertion or deletion has a cost (0 ≤ cost ≤ 10,000) which varies depending on exactly which character value to be added or deleted. Given the content of a cow's ID tag and the cost of inserting or deleting each of the alphabet's characters, find the minimum cost to change the ID tag so it satisfies FJ's requirements. An empty ID tag is considered to satisfy the requirements of reading the same forward and backward. Only letters with associated costs can be added to a string.

    Input

    Line 1: Two space-separated integers: N and M
    Line 2: This line contains exactly M characters which constitute the initial ID string
    Lines 3..N+2: Each line contains three space-separated entities: a character of the input alphabet and two integers which are respectively the cost of adding and deleting that character.

    Output

    Line 1: A single line with a single integer that is the minimum cost to change the given name tag.

    Sample Input

    3 4
    abcb
    a 1000 1100
    b 350 700
    c 200 800

    Sample Output

    900

    Hint

    If we insert an "a" on the end to get "abcba", the cost would be 1000. If we delete the "a" on the beginning to get "bcb", the cost would be 1100. If we insert "bcb" at the begining of the string, the cost would be 350 + 200 + 350 = 900, which is the minimum.

    Source

    分析


    用 dp [ i ][ j ]表示使i~j区间回文的最小画费.

    1.如果 a [ i ] == a [ j ] 那么要让 i ~ j 回文只需要处理 ( i+1 ) ~ ( j-1 )即可,所以 dp [ i ][ j ] = dp [ i+1 ][ j-1 ].

    2.其他情况就用如下递推关系:

    dp [ i ][ j ] = min ( dp [ i+1 ][ j ] + cost [ a [ i ] ] , dp [ i ][ j-1 ] + cost [ a[ j ] ] )

    如果从回文的 ( i+1 ) ~ j 而来,添加了 a [ i ] 后就不回文了, 可以再在右边加一个 a[ i ] ,或者删掉左边的 a [ i ] ,所以 cost [ a [ i ] ] 取增删中最小的即可, i ~ ( j-1 ) 同理.

     1 #include<cstdio>
     2 #include<algorithm>
     3 #define read(a) a=getnum()
     4 using namespace std;
     5 
     6 const int maxn=26,maxm=2005;
     7 int n,m;
     8 int a[maxm],cost[maxn];
     9 int dp[maxm][maxm];
    10 
    11 inline int getnum()
    12 {
    13     int ret=0,k=1;char c;
    14     for(c=getchar();c<'0'||c>'9';c=getchar()) if(c=='-') k=-1;
    15     for(;c>='0'&&c<='9';c=getchar()) ret=ret*10+c-'0';
    16     return ret*k;
    17 }
    18 
    19 void solve()
    20 {
    21     for(int i=m;i>=1;i--)
    22     {
    23         for(int j=i;j<=m;j++)
    24         {
    25             if(a[i]==a[j]) dp[i][j]=dp[i+1][j-1];
    26             else dp[i][j]=min(dp[i+1][j]+cost[a[i]],dp[i][j-1]+cost[a[j]]);
    27         }
    28     }
    29     printf("%d
    ",dp[1][m]);
    30 }
    31 
    32 void init()
    33 {
    34     read(n); read(m);
    35     char c;
    36     for(int i=1;i<=m;i++)
    37     {
    38         c=getchar();
    39         a[i]=c-'a';
    40     }
    41     getchar();
    42     for(int i=1;i<=n;i++)
    43     {
    44         int c1,c2;
    45         c=getchar();
    46         read(c1); read(c2);
    47         cost[c-'a']=min(c1,c2);
    48     }
    49 }
    50 
    51 int main()
    52 {
    53 #ifndef ONLINE_JUDGE
    54     freopen("cheap.in","r",stdin);
    55     freopen("cheap.out","w",stdout);
    56 #endif
    57     init();
    58     solve();
    59 #ifndef ONLINE_JUDGE
    60     fclose(stdin);
    61     fclose(stdout);
    62     system("cheap.out");
    63 #endif
    64     return 0;
    65 }
    View Code
  • 相关阅读:
    php高效率写法
    php经典bug
    cideogniter部署到阿里云服务器出现session加载错误
    linux gcc编译protocol
    linux权限问题
    http协议详解
    哈希表
    c语言函数
    socket相关函数
    构建之法阅读笔记05
  • 原文地址:https://www.cnblogs.com/Sunnie69/p/5432672.html
Copyright © 2011-2022 走看看