classSolution: deflargestDivisibleSubset(self, nums: List[int]) -> List[int]: nums.sort() # f[x] 表示以 x 結尾的 Largest Divisible Subset f = {x: [x] for x in nums} for i, x inenumerate(nums): # 枚舉 x 的前一個數 y = nums[j],若 y | x,則 ∀u, u ∈ f[y] -> u | x for j inrange(i): if x % nums[j] == 0: f[x] = max(f[x], f[nums[j]] + [x], key=len) returnmax(f.values(), key=len)
classSolution: deflargestDivisibleSubset(self, nums: List[int]) -> List[int]: n = len(nums) nums.sort() # f[i] 表示以 nums[i] 結尾的 Largest Divisible Subset 大小 f = [1] * n mx = 1 for i, x inenumerate(nums): # 枚舉 x 的前一個數 y = nums[j],若 y | x,則 ∀u, u ∈ f[y] -> u | x for j inrange(i): if x % nums[j] == 0and f[i] < f[j] + 1: f[i] = f[j] + 1 mx = max(mx, f[i]) # 更新最大的 LDS 大小 # 從後往前找,找到最大的 LDS ans = [] for i inrange(n - 1, -1, -1): if f[i] == mx and (not ans or ans[-1] % nums[i] == 0): ans.append(nums[i]) mx -= 1 return ans
classSolution { public: vector<int> largestDivisibleSubset(vector<int>& nums){ int n = nums.size(); sort(nums.begin(), nums.end()); // f[i] 表示以 nums[i] 結尾的 Largest Divisible Subset 最大長度 vector<int> f(n, 1); int mx = 0; for (int i = 0; i < n; i++) { // 枚舉 x = nums[i] 的前一個數 y = nums[j],若 y | x,則 ∀u, u ∈ f[y] -> u | x for (int j = 0; j < i; j++) { if (nums[i] % nums[j] == 0) f[i] = max(f[i], f[j] + 1); } mx = max(mx, f[i]); } // 從後往前找,找到最大的 LDS vector<int> ans; for (int i = n - 1; i >= 0 && mx > 0; i--) { if (f[i] == mx && (ans.empty() || ans.back() % nums[i] == 0)) { ans.push_back(nums[i]); mx--; } } return ans; } };
寫在最後
PROMPT
masterpiece, best quality, high quality, extremely detailed CG unity 8k wallpaper, extremely detailed, High Detail, vibrant colors, anime style,
1girl, solo, Ganyu, Ganyu (Genshin Impact), long hair, light blue hair, purple eyes, black-red horns, yellow jacket, white shirt, black skirt, looking at viewer, smile, outdoors, yellow tulips, flower field, sunlight,
The image depicts an anime-style Ganyu from Genshin Impact, but with a different outfit and setting. She is wearing a yellow jacket over a white shirt, black skirt, and is standing in a field of yellow tulips. The sun is shining, creating a warm and inviting atmosphere, and she’s smiling at the viewer.