HDOJ 免费馅饼
摘要:
简单DP,记忆化会RE,递推即可。# include <cstdio># include <cstring># define N 100005int n, t, f[N][11], a[N][11];int Max(int x, int y){return x>y ? x:y;}/*int dp(int x, int y){ int &ans = f[x][y]; if (ans >= 0) return ans; if (x > t) return ans = 0; ans = 0; ans = Max(ans, dp(x+1, y)); i 阅读全文
posted @ 2012-08-08 15:36 getgoing 阅读(290) 评论(0) 推荐(0)
浙公网安备 33010602011771号