摘要: class Solution { public: int f[25][2010];//体积范围从-1000~1000 int findTargetSumWays(vector<int>& nums, int target) { int n=nums.size(),offset=1000;//价值总和 阅读全文
posted @ 2023-04-14 20:54 穿过雾的阴霾 阅读(17) 评论(0) 推荐(0)
摘要: class Solution { public: bool f[110][110]; bool isInterleave(string s1, string s2, string s3) { int n=s1.size(),m=s2.size(); if(n+m!=s3.size()) return 阅读全文
posted @ 2023-04-14 19:45 穿过雾的阴霾 阅读(14) 评论(0) 推荐(0)