POJ 3280 Cheapest Palindrome[DP 의 대표 적 인 답문 문제]

원본 링크:http://poj.org/problem?id=3280
CSUST:http://acm.hust.edu.cn/vjudge/contest/view.action?cid=20437#problem/C
다음으로 전송:http://blog.sina.com.cn/s/articlelist_1836701754_0_1.html
Cheapest Palindrome
Time Limit: 2000MS
 
Memory Limit: 65536K
Total Submissions: 4305
 
Accepted: 2091
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 

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
USACO 2007 Open Gold
이전 POJ 1159 의 블 로 그 를 먼저 보고 링크 를 여 는 것 을 추천 합 니 다.
제목:한 줄 의 문 자 를 드 리 겠 습 니 다.그 중 일 부 를 삭제 하 는 것 을 추가 하여 답장 문자열 로 만 들 고 최소 비용 을 들 입 니 다.
 
분석:클래식 DP.poj 1159 의 강화 버 전 으로 삭제 작업 을 추 가 했 고 매번 삽입 삭제 의 대가 도 일정한 값 이 아 닙 니 다.그러나 대체적으로 생각 은 똑 같 습 니 다.dp[i][j]를 설정 하면 i-j 를 리 턴 문자열 로 바 꾸 는 최소 대 가 를 표시 합 니 다.
삽입 작업 은 나의 전편 박문 에서 말 했 는데,여 기 는 더 이상 군말 하지 않 는 다.
삭제 작업 상태 가 좋 습 니 다.f(i,j-1)+j 자 를 삭제 하 는 대가  
                                          f(i+1,j)+i 문 자 를 삭제 하 는 대가
 
코드(454 ms AC):
#include #include #include #include #include #include #include using namespace std;int len,letter,dp[2105][2105];map  insert,removed;char str[2105];int DFS(int l,int r){    if(l>=r)     return 0;    if(dp[l][r]!=-1)     return dp[l][r];    int M=99999999;    if(str[l]==str[r])      M=DFS(l+1,r-1);    else{      M=min(M,DFS(l+1,r)+insert[str[l]]);      M=min(M,DFS(l,r-1)+insert[str[r]]);      M=min(M,DFS(l+1,r)+removed[str[l]]);      M=min(M,DFS(l,r-1)+removed[str[r]]);    }    return dp[l][r]=M;}int main(){    while(scanf("%d %d",&letter,&len)!=EOF){       memset(dp,-1,sizeof(dp));       scanf("%s",str+1);       insert.clear();       removed.clear();       for(int i=1;i<=letter;i++){          getchar();          char ch;          int i,r;          scanf("%c %d %d",&ch,&i,&r);          insert[ch]=i,removed[ch]=r;       }       cout<//Accepted 16004K 594MS C++ 947B 2013-03-15 20:09:34 #include #include #include #include using namespace std; const int maxn = 2000 + 5; int dp[maxn][maxn]; map add , delet; char str[maxn]; int dfs(int l, int r) { if(l >= r) return 0; else if(dp[l][r] != -1) return dp[l][r]; int M1,M2; if(str[l] == str[r]) M1 = dfs(l+1, r-1); else { M1 = min(dfs(l+1,r)+add[str[l]], dfs(l, r-1)+add[str[r]]); M2 = min(dfs(l+1, r)+delet[str[l]], dfs(l, r-1)+delet[str[r]]); M1 = min(M1, M2); } return dp[l][r] = M1; } int main() { int n, m; while(scanf("%d%d", &n, &m) != EOF) { memset(str, '0', sizeof(str)); memset(dp, -1, sizeof(dp)); add.clear(); delet.clear(); scanf("%s", str+1); char ch; int ad, del; for(int i = 1; i <= n; i++) { getchar(); scanf("%c%d%d", &ch, &ad, &del); add[ch] = ad; delet[ch] = del; } printf("%d
", dfs(1,m)); } return 0; }

좋은 웹페이지 즐겨찾기