传送门

题意

Roma在玩一个游戏,一共玩了n局,赢则bourle+1,输则bourle-1,Roma将会在以下情况中退出

1.他赢了k个bourle

2.他输了k个bourle

现在给出一个字符串

'L':lose

'W':win

'?':任意

'D':平局

输出一个字符串满足条件(Roma n局后离开要满足上述两个其中之一)

分析

dp题

令dp[i][j]表示进行i-1局比赛后,是否获得j个bourle。

如果第i局为'W': dp[i+1][j+1]=j;

如果第i局为'L':dp[i+1][j-1]=j;

如果第i局为'D':dp[i+1][j]=j;

如果第i局为'?':上面三个都要进行

一开始dp[0][1500]=0

最后从n-1到0,比较dp[i][f]与f,f一开始是1500±k,f=dp[i+1][f]

回溯判断输出

trick

代码

#include<cstdio>
#include<string>
#include<iostream>
#include<algorithm>
using namespace std; string s;
int dp[1010][3030];
int n,k;
int main()
{
cin>>n>>k>>s;
for(int i=0;i<1010;++i)for(int j=0;j<3030;++j) dp[i][j]=-1;
dp[0][1500]=0;
for(int i=0;i<n;++i)
for(int j=1500-k+1;j<=1500+k-1;++j)
{
if(dp[i][j]==-1)continue;
if(s[i]=='W'||s[i]=='?') dp[i+1][j+1]=j;
if(s[i]=='L'||s[i]=='?') dp[i+1][j-1]=j;
if(s[i]=='D'||s[i]=='?') dp[i+1][j]=j;
}
if(dp[n][1500+k]==-1&&dp[n][1500-k]==-1) { puts("NO");return 0; }
int f=1500+k;
if(dp[n][1500+k]==-1) f=1500-k;
for(int i=n-1;i>=0;--i)
{
int g=f;f=dp[i+1][f];
if(g-f==1) s[i]='W';
if(g-f==0) s[i]='D';
if(g-f==-1) s[i]='L';
}
cout<<s<<endl;
return 0;
}

Educational Codeforces Round 20 E - Roma and Poker(dp)的更多相关文章

  1. Educational Codeforces Round 16 E. Generate a String (DP)

    Generate a String 题目链接: http://codeforces.com/contest/710/problem/E Description zscoder wants to gen ...

  2. Educational Codeforces Round 22 B. The Golden Age(暴力)

    题目链接:http://codeforces.com/contest/813/problem/B 题意:就是有一个数叫做不幸运数,满足题目的 n = x^a + y^b,现在给你一个区间[l,r],让 ...

  3. D Merge Equals Educational Codeforces Round 42 (Rated for Div. 2) (STL )

    D. Merge Equals time limit per test2 seconds memory limit per test256 megabytes inputstandard input ...

  4. Educational Codeforces Round 54 [Rated for Div. 2] (CF1076)

    第一次在宿舍打CF 把同宿舍的妹子吵得不行... 特此抱歉QAQ A 题意:给定一个字符串, 最多删掉一个字符,使得剩余字符串字典序最小 n<=2e5 当然"最多"是假的 删 ...

  5. Educational Codeforces Round 32:E. Maximum Subsequence(Meet-in-the-middle)

    题目链接:E. Maximum Subsequence 用了一个Meet-in-the-middle的技巧,还是第一次用到这个技巧,其实这个技巧和二分很像,主要是在dfs中,如果数量减小一半可以节约很 ...

  6. Codeforces Round #471 (Div. 2) F. Heaps(dp)

    题意 给定一棵以 \(1\) 号点为根的树.若满足以下条件,则认为节点 \(p\) 处有一个 \(k\) 叉高度为 \(m\) 的堆: 若 \(m = 1\) ,则 \(p\) 本身就是一个 \(k\ ...

  7. Codeforces Round #165 (Div. 1) Greenhouse Effect(DP)

    Greenhouse Effect time limit per test 2 seconds memory limit per test 256 megabytes input standard i ...

  8. Codeforces Round #658 (Div. 2) D. Unmerge(dp)

    题目链接:https://codeforces.com/contest/1382/problem/D 题意 给出一个大小为 $2n$ 的排列,判断能否找到两个长为 $n$ 的子序列,使得二者归并排序后 ...

  9. Codeforces Round #652 (Div. 2) D. TediousLee(dp)

    题目链接:https://codeforces.com/contest/1369/problem/D 题意 最初有一个结点,衍生规则如下: 如果结点 $u$ 没有子结点,添加 $1$ 个子结点 如果结 ...

随机推荐

  1. 初探STL之算法

    算法 STL算法部分主要由头文件<algorithm>,<numeric>,<functional>组成.要使用 STL中的算法函数必须包括头文件<algor ...

  2. People seldom do what they believe in. They do what is convenient, then repent.

    People seldom do what they believe in. They do what is convenient, then repent. 人们很少真正实践他们的理想.他们只做比较 ...

  3. LeetCode——Reverse Integer

    Reverse digits of an integer. Example1: x = 123, return 321 Example2: x = -123, return -321 Have you ...

  4. hdu 3746 Cyclic Nacklace (KMP求最小循环节)

    //len-next[len]为最小循环节的长度 # include <stdio.h> # include <algorithm> # include <string. ...

  5. 光流(optical flow)和openCV中实现

    转载请注明出处! ! ! http://blog.csdn.net/zhonghuan1992 光流(optical flow)和openCV中实现 光流的概念:        是Gibson在195 ...

  6. android经常使用正则工具类

    此类提供日常开发中经常使用的正则验证函数.比方:邮箱.手机号.电话号码.身份证号码.日期.数字.小数.URL.IP地址等.使用Pattern对象的matches方法进行整个字符匹配,调用该方法相当于: ...

  7. effctive C++ 读书笔记 条款 16

    条款16 成对使用new和delete时要採取同样形式 #include <iostream> #include <string> using namespace std; / ...

  8. BZOJ 3992: [SDOI2015]序列统计 快速幂+NTT(离散对数下)

    3992: [SDOI2015]序列统计 Description 小C有一个集合S,里面的元素都是小于M的非负整数.他用程序编写了一个数列生成器,可以生成一个长度为N的数列,数列中的每个数都属于集合S ...

  9. oracle性能监控

    https://blog.csdn.net/yangshangwei/article/details/52449489#监控事例的等待 https://blog.csdn.net/yangshangw ...

  10. dedecms时间格式调用标签汇总

    1.时间格式{dede:field name='pubdate' function='strftime("%Y年%m月%d日 %H:%M:%S","@me")' ...