leetcode 2320. 统计放置房子的方式数
摘要:
2320. 统计放置房子的方式数 class Solution { public: const int MOD = 1'000'000'007; int countHousePlacements(int n) { if(n == 1) return 4; vector<long> dpZero(n+ 阅读全文
posted @ 2024-12-29 15:48 ᶜʸᵃⁿ 阅读(12) 评论(0) 推荐(0)