热门标签
更多>
搜索结果
查询Tags标签: SYCOJ1613,共有 2条记录-
SYCOJ1613递归函数
题目—递归函数 (shiyancang.cn) 记忆化dfs,注意dp的限制范围#include<bits/stdc++.h> using namespace std; const int N=52; typedef long long ll; ll dp[N][N][N]; ll a,b,c; ll dfs(ll a,ll b,ll c) {if(a<=0||b<=0||c<=0) return 1;else if(a>20…
2021/7/13 6:07:50 人评论 次浏览 -
SYCOJ1613递归函数
题目—递归函数 (shiyancang.cn) 记忆化dfs,注意dp的限制范围#include<bits/stdc++.h> using namespace std; const int N=52; typedef long long ll; ll dp[N][N][N]; ll a,b,c; ll dfs(ll a,ll b,ll c) {if(a<=0||b<=0||c<=0) return 1;else if(a>20…
2021/7/13 6:07:50 人评论 次浏览