Leetcode 198. 打家劫舍

tou[k]=butou[k-1]+nums[k] butou[k]=max(butou[k-1],tou[k-1]) 壓縮數組,只要兩個變量就成web class Solution { public: int rob(vector<int>& nums) { int tou=0,butou=0,t; for(auto& x:nums)
相關文章
相關標籤/搜索