原题链接:
https://leetcode.cn/problems/make-sum-divisible-by-p/
很有意思的一道前缀和的题目 直接从来没想过这种思路
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45
|
class Solution { public: int minSubarray(vector<int>& nums, int p) { int n = nums.size(); vector<int>s(n + 1,0); for(int i = 0 ; i < n; i++){ s[i + 1] = (nums[i] + s[i]) % p; } int x = s[n]; if(x == 0){ return 0; }
unordered_map<int,int>hash;
int ans = n + 1;
for(int i = 0 ; i <= n ; i++){ hash[s[i]] = i; auto it = hash.find((s[i] - x + p) % p); if(it != hash.end()){ ans = min(ans,i - it->second); } }
return ans < n ? ans : - 1; } };
|