SRM 619
。。
。
能够记录一下临近的元素的相互关系(记录临近的4个B串元素的相互关系就可以)
dp[i+1][newj][newk]+=dp[i][j][k]*add。假设b[i+2]和a[i]都是选择b[i-2]~b[i+1]中出现过的数。add就是1,否则add是选择的方案数。
#include <vector>
#include <list>
#include <map>
#include <set>
#include <deque>
#include <stack>
#include <bitset>
#include <algorithm>
#include <functional>
#include <numeric>
#include <utility>
#include <sstream>
#include <iostream>
#include <iomanip>
#include <cstdio>
#include <cmath>
#include <cstdlib>
#include <ctime>
#include <cstring>
using namespace std;
class SimilarSequencesAnother {
public:
int getCount(int, int);
};
long long pmod = 1000000009;
long long dp[105][1 << 9][100];
int Hash[5][5][5][5];
int rHash[10005][4];
int ed = 0;
int add(int a[]) {
if (Hash[a[0]][a[1]][a[2]][a[3]] != -1)
return Hash[a[0]][a[1]][a[2]][a[3]];
Hash[a[0]][a[1]][a[2]][a[3]] = ed;
for (int i = 0; i < 4; ++i)
rHash[ed][i] = a[i];
ed++;
return ed - 1;
}
void get(int id, int a[]) {
for (int i = 0; i < 4; ++i)
a[i] = rHash[id][i];
}
int tmp[5], tt[4], flag[10];
int SimilarSequencesAnother::getCount(int N, int bound) {
int i, j, k, r;
int jj, kk, p;
long long cost1, cost2;
long long m = bound;
memset(dp, 0, sizeof(dp));
memset(Hash, -1, sizeof(Hash));
ed = 0;
tt[0] = 0;tt[1] = 0;tt[2] = 0;tt[3] = 0;
add(tt);
dp[0][1][0] = m;
if (m >= 2) {
tt[0] = 0;tt[1] = 0;tt[2] = 0;tt[3] = 1;
add(tt);
dp[0][1][1] = m * (m - 1) % pmod;
}
for (i = 0; i < N; ++i) {
for (j = 0; j < (1 << 9); ++j) {
for (k = 0; k < ed; ++k) {
if (dp[i][j][k] == 0)
continue;
get(k, tmp);
int pn = max(tmp[0], max(tmp[1], max(tmp[2], tmp[3]))) + 1;
for (tmp[4] = 0; tmp[4] <= pn; ++tmp[4]) {
//把tmp[1]->tmp[4]拷贝到tt,并变成最小表达
memset(flag, -1, sizeof(flag));
int ttn = 0;
for (r = 0; r < 4; ++r) {
if (flag[tmp[r + 1]] == -1) {
flag[tmp[r + 1]] = ttn++;
}
tt[r] = flag[tmp[r + 1]];
}
////////////////////////////////////////
if (tmp[4] == pn)
cost1 = m - pn;
else
cost1 = 1;
if (cost1 <= 0)
continue;
kk = add(tt);
for (p = 0; p <= max(tmp[4] + 1, pn); p++) {//枚举A串当前字符
if (p == max(tmp[4] + 1, pn))
cost2 = m - max(tmp[4] + 1, pn);
else
cost2 = 1;
if (cost2 <= 0)
continue;
jj = 0;
for (r = 0; r < 9; ++r) {
if (j & (1 << r)) {
for (int movea = 0; movea < 2; ++movea)
for (int moveb = 0; moveb < 3; ++moveb) {
int xx = r % 3 + movea;
int yy = r / 3 + moveb;
if (xx > 2 || yy > 2)
continue;
if (movea) {
jj |= (1 << (yy * 3 + xx));
continue;
}
if (p == tmp[2 - xx + yy])
jj |= (1 << (yy * 3 + xx));
}
}
}
dp[i + 1][jj][kk] += dp[i][j][k] * cost1 % pmod * cost2
% pmod;
dp[i + 1][jj][kk] %= pmod;
}
}
}
}
}
long long ans = 0;
for (j = 1; j < (1 << 9); ++j) {
for (k = 0; k < ed; ++k) {
if (rHash[k][2] == 0 && rHash[k][3] == 0) {
ans += dp[N][j][k];
ans %= pmod;
}
}
}
return ans;
}
SRM 619的更多相关文章
- topcoder SRM 619 DIV2 GoodCompanyDivTwo
注意题目给的最后一句话,如果部门任何employee都做不同类型的工作,则这个部门是一个diverse,题目是计算department的diverse数 读起来感觉有点别扭,英语没学好的原因 int ...
- Topcoder SRM 619 DIv2 500 --又是耻辱的一题
这题明明是一个简单的类似约瑟夫环的问题,但是由于细节问题迟迟不能得到正确结果,结果比赛完几分钟才改对..耻辱. 代码: #include <iostream> #include <c ...
- TC250专场
SRM 623 DIV2 1000pt 题意:给出一个最多50*50的矩阵,每个单元可能为'.'.'P'.'A','.'代表空地,你每次操作可以把一个P或者A拿到空地上,求一个最大的含有相同字符的矩形 ...
- Juniper SSG5 PPTP VPN 619错误解决
公司分部的客户端需要使用PPTP VPN连接总部,将网关更换为Juniper SSG5后,客户端出现了每几个小时自动断开的现象,错误619. 解决:Security —— ALG —— 开启PPTP协 ...
- 记第一次TopCoder, 练习SRM 583 div2 250
今天第一次做topcoder,没有比赛,所以找的最新一期的SRM练习,做了第一道题. 题目大意是说 给一个数字字符串,任意交换两位,使数字变为最小,不能有前导0. 看到题目以后,先想到的找规律,发现要 ...
- SRM 513 2 1000CutTheNumbers(状态压缩)
SRM 513 2 1000CutTheNumbers Problem Statement Manao has a board filled with digits represented as St ...
- SRM 510 2 250TheAlmostLuckyNumbersDivTwo(数位dp)
SRM 510 2 250TheAlmostLuckyNumbersDivTwo Problem Statement John and Brus believe that the digits 4 a ...
- SRM 657 DIV2
-------一直想打SRM,但是感觉Topcoder用起来太麻烦了.题目还是英文,不过没什么事干还是来打一打好了.但是刚注册的号只能打DIV2,反正我这么弱也只适合DIV2了.. T1: 题目大意: ...
- SRM DIV1 500pt DP
SRM 501 DIV1 500pt SRM 502 DIV1 500pt SRM 508 DIV1 500pt SRM 509 DIV1 500pt SRM 511 DIV1 500pt SRM 5 ...
随机推荐
- iis下的php环境的配置
1. 参考园友文章: http://www.cnblogs.com/zengxiangzhan/archive/2010/03/05/1679286.html 2.另外还可以参考一下文章: http: ...
- URL地址重写例子(Helicon)
# Helicon ISAPI_Rewrite configuration file# Version 3.1.0.86 #RewriteEngine on RewriteRule ^/esf/.+( ...
- 剑指offer面试题7:用两个栈实现队列
题目1:用两个栈来实现一个队列,完成队列的Push和Pop操作. 队列中的元素为int类型. 代码实现: public class Solution07 { Stack<Integer> ...
- linux进程永久放后台运行
我们使用ssh连接服务器之后,如果在执行某个命令需要时间特别长,当把终端断掉之后,命令就自动停止了一般我们在ssh客户端执行命令之后,默认他的父进程是ssh,所以把ssh终端关掉之后,子进程也就被自动 ...
- <转>Python: and、or以及and-or
转自 http://www.cnblogs.com/BeginMan/p/3197123.html 一.and: 在Python 中,and 和 or 执行布尔逻辑演算,如你所期待的一样,但是它们并不 ...
- 【Linux】Could not resolve: www.test.com (Could not contact DNS servers)
在请求微信小程序服务时候报错了 从这个报错,可以很明显的发现是域名解析不了 1 故障排查:因为代码里调用的是curl,所以测试一下curl是否能够正常解析dns 果然不行, 2 解决办法: vi /e ...
- 【Redis使用系列】使用Redis做防止重复提交
前言 在平时的开发中我们都需要处理重复提交的问题,避免业务出错或者产生脏数据,虽然可以通过前端控制但这并不是可以完全避免,最好的方式还是前后端均进行控制,这样的话就可以更有效,尽可能全面的去减少错误的 ...
- Junit单元测试初识
写过单元测试的小童鞋对于Junit一定不陌生,可小白我,刚刚开始接触,这里就把我的测试实验,做一下记录,以便以后方便查看.学习使用JUnit4,既然使用最新版本了,就不要再考虑老版本是如何使用的了,J ...
- gitlab无法push或clone的错误:JWT::DecodeError (Nil JSON web token): lib/gitlab/workhorse.rb:120:in `verify_api_request!'
使用源码安装的方式升级gitlib7.14到gitlab-8.13.5中文版,然后push的时候报错: 错误信息如下: Started GET "/gitlab/hushizhi/gitla ...
- 编译安装Ruby 1.9.3 安装CentOS
1. 准备需要的安装的东西 yum -y install make gcc openssl-devel zlib-devel gcc gcc-c++ make autoconf readline-de ...