题解 2662: 蓝桥杯2022年第十三届省赛真题-李白打酒加强版

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

暴力骗分+dfs剪叶+动态规划

摘要:解题思路:注意事项:参考代码://李白打酒加强版 #include <stdio.h>#include <stdlib.h>#include <string.h>#include <math.h>#d……

满分dfs(python)

摘要:解题思路:注意事项:参考代码:import functools n,m = map(int, input().split()) @functools.lru_cache(None) def df……

李白打酒加强版

摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){    int n,m,dp[210][110][110];    ci……

李白打酒加强版动态规划

摘要:分析:这是一道动态规划题,设f[i][j][k]表示走到了第i个位置,遇到了j个花,还剩k斗酒的合法方案数. 初始化很简单就是f[0][0][2]=1,因为一开始酒的数量是2 假如共遇到店……