UVAlive 6697 - Homework Evaluation(DP)

题目链接:点击打开链接

思路:用d[i][j][last][p]表示第一个串到了i位置, 第二个串到了j位置,上一个操作是last操作, 是否开始匹配的最优解。

该题有坑的, 比赛时多亏队友的提示:  当第一个串匹配完毕, 第二个串剩下的部分要当作减去了。

细节参见代码:

#include <cstdio>
#include <cstring>
#include <algorithm>
#include <iostream>
#include <string>
#include <vector>
#include <stack>
#include <bitset>
#include <cstdlib>
#include <cmath>
#include <set>
#include <list>
#include <deque>
#include <map>
#include <queue>
using namespace std;
typedef long long ll;
const int INF = 1e9 + 7;
const int maxn = 100 + 10;
char s1[maxn], s2[maxn];
int len1, len2;
int dp[maxn][maxn][133][3], vis[maxn][maxn][133][3], kase = 0;
int DP(int i, int j, int last, int p) {
    int& ans = dp[i][j][last][p];
    if(i > len1 || j > len2) {
        if(len2 >= j){
            if(last != 2) return -(len2-j+1)*3 - 4;
            else return -(len2-j+1)*3;
        }
        return 0;
    }
    if(vis[i][j][last][p] == kase) return ans;
    vis[i][j][last][p] = kase;
    ans = -INF;
    if(p == 0) ans = max(ans, DP(i+1, j, last, p));
    if(s1[i] == s2[j]) ans = max(ans, DP(i+1, j+1, 0, 1)+8);
    if(s1[i] != s2[j]) ans = max(ans, DP(i+1, j+1, 0, 1)-5);
    if(last != 1) ans = max(ans, DP(i+1, j, 1, 1)-7);
    else ans = max(ans, DP(i+1, j, 1, 1)-3);
    if(last != 2) ans = max(ans, DP(i, j+1, 2, 1)-7);
    else ans = max(ans, DP(i, j+1, 2, 1)-3);
    return ans;
}
int main() {
    int T; scanf("%d", &T);
    while(T--) {
        scanf("%s%s", s1+1, s2+1);
        len1 = strlen(s1+1);
        len2 = strlen(s2+1);
        ++kase;
        int ans = DP(1, 1, 0, 0);
        printf("%d\n", ans);
    }
    return 0;
}
时间: 2024-12-22 12:03:35

UVAlive 6697 - Homework Evaluation(DP)的相关文章

UVaLive 6697 Homework Evaluation (DP)

题意:给出一个长字符串,再给一个短字符串,进行匹配,如果第i个恰好匹配,则 +8,:如果不匹配,可以给长或短字符串添加-,先后匹配,这样-3, 连续的长字符串添加-,需要减去一个4:也可不给添加-,则-5. 析:dp[i][j][0] 表示第一个字符串第 i 个位置,和第二个字符串的第 j 个位置相匹配,dp[i][j][1] 表示第一个字符串第 i 个位置,和第二个字符串的第 j 个位置加_相匹配. 那么怎么转移呢?如果s1[i] == s2[j] 那么 dp[i+1][j+1][0] = M

[UVALive 7143]Room Assignment(Dp)

Description There are N guests checking in at the front desk of the hotel. 2K (0 ≤ 2K ≤ N) of them are twins.There are M rooms available. Each room has capacity ci which means how many guests it can hold.It happens that the total room capacity is N,

UVAlive 6697 Homework Evaluation

借鉴了别人的博客啊,自己写写给以后的自己看吧 给出两个字符串,用第二个字符串去匹配第一个字符串,可以对第二个字符串进行删除或插入操作,一位匹配成功得8分失败-5分,如果插入或删除,对于连续插入或删除m个数减(4+m * 3)分.求最终得分的最大值. 用dp[i][j]表示第二个串的第i位和第一个串的第j位匹配得分的最大值,dp[i][j]可以是dp[i - 1][j - 1]继续匹配也可能是dp[i - 1][k]通过插入一段串得到或者dp[k][j - 1]通过在第二个串删除一段得到.最后扫描

HDU 1074 Doing Homework(状压DP)

Problem Description Ignatius has just come back school from the 30th ACM/ICPC. Now he has a lot of homework to do. Every teacher gives him a deadline of handing in the homework. If Ignatius hands in the homework after the deadline, the teacher will r

hdu 5623 KK&#39;s Number(dp)

问题描述 我们可爱的KK有一个有趣的数学游戏:这个游戏需要两个人,有N\left(1\leq N\leq 5*{10}^{4} \right)N(1≤N≤5∗10?4??)个数,每次KK都会先拿数.每次可以拿任意多个数,直到NN个数被拿完.每次获得的得分为取的数中的最小值,KK和对手的策略都是尽可能使得自己的得分减去对手的得分更大.在这样的情况下,最终KK的得分减去对手的得分会是多少? 输入描述 第一行一个数T\left( 1\leq T\leq 10\right)T(1≤T≤10),表示数据组

HDU1789Doing Homework again(贪婪)

HDU1789Doing Homework again(贪心) 题目链接 题目大意:给你n们作业的最后期限和过了这个期限没做须要扣的分数.问如何安排能够使得扣分最少. 解题思路:贪心,将扣分多的作业排在前面,扣分同样的依照最后期限前的排前面,然后用一个数组来表示第i天是否有安排.每次都将第i个作业放到它的最后期限的那天完毕,但假设这一天被占了,那么就仅仅能往前移动,找空暇的天.假设一直找到了0.那么说明这个作业是无法按时完毕了,就加上分数.假设某项作业完毕的最后期限比n还大,那么这个作业一定是能

Ural 1353 Milliard Vasya&#39;s Function(DP)

题目地址:Ural 1353 定义dp[i][j],表示当前位数为i位时,各位数和为j的个数. 对于第i位数来说,总可以看成在前i-1位后面加上一个0~9,所以状态转移方程就很容易出来了: dp[i][j]=dp[i][j]+dp[i][j-1]+dp[i][j-2]+.......+dp[i][j-9]: 最后统计即可. 代码如下: #include <iostream> #include <cstdio> #include <string> #include <

HDU 4908 (杭电 BC #3 1002题)BestCoder Sequence(DP)

题目地址:HDU 4908 这个题是从m开始,分别往前DP和往后DP,如果比m大,就比前面+1,反之-1.这样的话,为0的点就可以与m这个数匹配成一个子串,然后左边和右边的相反数的也可以互相匹配成一个子串,然后互相的乘积最后再加上就行了.因为加入最终两边的互相匹配了,那就说明左右两边一定是偶数个,加上m就一定是奇数个,这奇数个的问题就不用担心了. 代码如下: #include <iostream> #include <stdio.h> #include <string.h&g

hdu1789Doing Homework again(贪心)

题目链接: 啊哈哈,点我点我 思路: 这道题是简单的贪心..先按分数从大到小排序,然后将这个分数的截止日期从后向前扫描,如果碰到没有被标记的则这一天可以做这个作业... 题目: Doing Homework again Time Limit: 1000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others) Total Submission(s): 6451    Accepted Submission(s): 383