
dp
deku_
这个作者很懒,什么都没留下…
展开
-
2017 ACM ICPC East Central North America Regional Contest G
// Stan Ford is a typical college graduate student, meaning that one of the most important things on his mind is where his next meal will be. Fortune has smiled on him as he’s been invited to a m...原创 2018-08-11 20:09:25 · 430 阅读 · 0 评论 -
数位dp一道自动机题 poj 3208
#include <iostream>#include <stdio.h>#include <stdlib.h>#include <algorithm>#include <string.h>using namespace std;#define maxn 20#define LL long longLL digit[ma...原创 2019-02-15 21:15:33 · 191 阅读 · 0 评论 -
HihoCoder 1454
#include<bits/stdc++.h>typedef long long ll;using namespace std;const int mod = 998244353;void add(int &x,int y){ if((x+=y)>=mod)x-=mod;}int dp[502][502][2][2];char a[1000],b[...原创 2019-07-08 23:29:56 · 173 阅读 · 0 评论