FOJ
文章平均质量分 60
spongewxy
这个作者很懒,什么都没留下…
展开
-
POJ 1083 Moving Tables
The famous ACM (Advanced Computer Maker) Company has rented a floor of a building whose shape is in the following figure.The floor has 200 rooms each on the north side and south side along the原创 2015-06-19 16:14:29 · 648 阅读 · 0 评论 -
FOJ 1381 Regular Expressions
#include #include #include #include #include #include using namespace std;const int maxn = 1010;const int inf = 0x3f3f3f3f;char s1[maxn], s2[maxn];int dp[maxn][maxn];// 题目链接:http://acm.fz原创 2015-06-02 12:43:14 · 561 阅读 · 0 评论 -
FOJ 1342 Tight Words
#include #include #include #include #include #include using namespace std;// 题目链接: http://acm.fzu.edu.cn/problem.php?pid=1342/* 这是一道简单的概率DP: dp[i][j] : 代表长度为i,且最后一个单词为j的情况下,满足约束条件的概率原创 2015-06-01 23:14:42 · 460 阅读 · 0 评论 -
FOJ 1559 Count Zeros
#include #include #include #include #include #include using namespace std;// 题目链接: http://acm.fzu.edu.cn/problem.php?pid=1559/* 递推公式: dp[i] = 3 * dp[i-1] - 2 * dp[i-2] + 2^(i-2) - 1*/原创 2015-06-01 23:15:31 · 425 阅读 · 0 评论 -
FOJ 1320 Ones
#include #include #include #include #include #include using namespace std;// 题目链接 : http://acm.fzu.edu.cn/problem.php?pid=1320/* 由于只能执行+,*这两种运算,因此我们可以得到下面的状态转移方程 dp[i] = min(dp[i-1]+原创 2015-06-01 22:06:51 · 424 阅读 · 0 评论 -
FOJ 1523 A Version of Nim
#include #include #include #include #include #include using namespace std;// 题目链接:http://acm.fzu.edu.cn/problem.php?pid=1523/* 博弈DP*/int dp[10][10][10][10];int n, p1, p2, p3, p4;in原创 2015-06-02 12:41:13 · 382 阅读 · 0 评论 -
FOJ 1319 Blocks of Stones
#include #include #include #include #include #include using namespace std;const int maxn = 110;const int inf = 0x3f3f3f3f;// 题目链接: http://acm.fzu.edu.cn/problem.php?pid=1319/* 经典的石子合并问原创 2015-06-01 22:07:33 · 539 阅读 · 0 评论 -
FOJ 1147 Tiling
import java.math.BigInteger;import java.util.Scanner;public class Main { /* * 很容易得到相应的递推公式:f[n] = f[n-1] + 2 * f[n-2] */ public static void main(String[] args) { // TODO Auto-generated m原创 2015-06-01 22:37:15 · 457 阅读 · 0 评论