POJ 3280 Cheapest Palindrome[DP 의 대표 적 인 답문 문제]
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
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
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
//Accepted 16004K 594MS C++ 947B 2013-03-15 20:09:34
#include
#include
#include
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
CloudFront의 SSL Certificate 항목을 회색으로 선택할 수 없습니까? 원인은 SSL 인증서 (ACM)를 버지니아 북부에서 발행하지 않았기 때문에AWS의 CloudFront+S3+Route53에서 정적 WEB 사이트를 SSL로 공개하려고 했는데, CroudFront와 독자 도메인의 연결로 빠진 이야기입니다. HTML 파일을 S3에서 게시하도록 빌드합니다. C...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.