摘要:
A 两种方法,递归和递推 记忆化搜索跑一边就行了 #include<bits/stdc++.h> using namespace std; typedef long long ll; const ll mod=1e9+7; const ll N=100; ll dp[N][N]; char arr[ 阅读全文
摘要:
A 两种方法,递归和递推 记忆化搜索跑一边就行了 #include<bits/stdc++.h> using namespace std; typedef long long ll; const ll mod=1e9+7; const ll N=100; ll dp[N][N]; char arr[ 阅读全文
|