思路:要解决的子问题不仅仅是数量的变化,判断的条件也会变化,选择同时记住子问题和变化的条件,存下所有变化条件下子问题的最优结果,作为父问题的解答...
从今天起,每天这里都会更新一道leetcode的算法结构题,旨在训练逻辑思维和代码功底,share一些优秀的解题思路给大家参考,每天早上开车,上班路上拿来一起思考思考~...
P2015 二叉苹果树#include <bits/stdc++.h>using namespace std;int dp[101][101]; int mp[1001][1001];struct NO{int w,to,nxt;}no[501];int cnt,sid[101];int head[...
Given an integer array with all positive numbers and no duplicates, find the number of possible combinations that add up to a positive integer target.