{"id":194,"date":"2024-10-19T00:37:04","date_gmt":"2024-10-18T16:37:04","guid":{"rendered":"https:\/\/womeifei.cn\/?p=194"},"modified":"2024-10-19T00:37:04","modified_gmt":"2024-10-18T16:37:04","slug":"%e5%92%8c%e4%b8%bak%e7%9a%84%e5%ad%90%e6%95%b0%e7%bb%84","status":"publish","type":"post","link":"https:\/\/womeifei.cn\/index.php\/2024\/10\/19\/%e5%92%8c%e4%b8%bak%e7%9a%84%e5%ad%90%e6%95%b0%e7%bb%84\/","title":{"rendered":"\u548c\u4e3ak\u7684\u5b50\u6570\u7ec4"},"content":{"rendered":"\n<figure class=\"wp-block-image size-full\"><div class='fancybox-wrapper lazyload-container-unload' data-fancybox='post-images' href='https:\/\/womeifei.cn\/wp-content\/uploads\/2024\/10\/image-28.png'><img class=\"lazyload lazyload-style-1\" src=\"data:image\/svg+xml;base64,PCEtLUFyZ29uTG9hZGluZy0tPgo8c3ZnIHdpZHRoPSIxIiBoZWlnaHQ9IjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgc3Ryb2tlPSIjZmZmZmZmMDAiPjxnPjwvZz4KPC9zdmc+\"  loading=\"lazy\" decoding=\"async\" width=\"919\" height=\"550\" data-original=\"https:\/\/womeifei.cn\/wp-content\/uploads\/2024\/10\/image-28.png\" src=\"data:image\/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB\/AAffA0nNPuCLAAAAAElFTkSuQmCC\" alt=\"\" class=\"wp-image-195\"  sizes=\"auto, (max-width: 919px) 100vw, 919px\" \/><\/div><\/figure>\n\n\n\n<p class=\"has-large-font-size\">\u65b9\u6cd5\u4e00:\u679a\u4e3e<\/p>\n\n\n\n<figure class=\"wp-block-image size-full wp-duotone-unset-1\"><div class='fancybox-wrapper lazyload-container-unload' data-fancybox='post-images' href='https:\/\/womeifei.cn\/wp-content\/uploads\/2024\/10\/image-29.png'><img class=\"lazyload lazyload-style-1\" src=\"data:image\/svg+xml;base64,PCEtLUFyZ29uTG9hZGluZy0tPgo8c3ZnIHdpZHRoPSIxIiBoZWlnaHQ9IjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgc3Ryb2tlPSIjZmZmZmZmMDAiPjxnPjwvZz4KPC9zdmc+\"  loading=\"lazy\" decoding=\"async\" width=\"898\" height=\"97\" data-original=\"https:\/\/womeifei.cn\/wp-content\/uploads\/2024\/10\/image-29.png\" src=\"data:image\/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB\/AAffA0nNPuCLAAAAAElFTkSuQmCC\" alt=\"\" class=\"wp-image-196\"  sizes=\"auto, (max-width: 898px) 100vw, 898px\" \/><\/div><\/figure>\n\n\n\n<pre class=\"wp-block-code\"><code>int cnt=0;\nfor(int i=0;i&lt;numsSize;i++)\n{\nint sum=0;\nfor(int j=i=j>=0;j--)\n{\nsum+=nums&#91;j];\nif(sum==target)cnt++;\n}\n}\nreturn cnt;<\/code><\/pre>\n\n\n\n<p class=\"has-large-font-size\">\u65f6\u95f4\u590d\u6742\u5ea6O(n*n) \u5bf9\u4e8e\u6bcf\u4e2ai\u6211\u4eec\u9700\u8981\u5faa\u73af\u6240\u6709\u7684j \u8fd9\u8fd8\u53ef\u4ee5\u518d\u8fdb\u4e00\u6b65\u4f18\u5316!<\/p>\n\n\n\n<p class=\"has-large-font-size\">\u65b9\u6cd5\u4e8c:\u54c8\u5e0c\u8868+\u524d\u7f00\u548c<\/p>\n\n\n\n<p><strong>C++\u6e90\u4ee3\u7801\u5982\u4e0b \u786e\u5b9e\u5f88\u65b9\u4fbf<\/strong><\/p>\n\n\n\n<p>class Solution {<\/p>\n\n\n\n<p>public:<\/p>\n\n\n\n<p>&nbsp; &nbsp; int subarraySum(vector&lt;int&gt;&amp; nums, int k) {<\/p>\n\n\n\n<p>&nbsp; &nbsp; &nbsp; &nbsp;unordered_map&lt;int ,int&gt; mp;<\/p>\n\n\n\n<p>&nbsp; &nbsp; &nbsp; &nbsp;mp[0]=1;<\/p>\n\n\n\n<p>\u00a0 \u00a0 \u00a0 \u00a0int count=0,pre=0;<\/p>\n\n\n\n<p>\u00a0 \u00a0 \u00a0 \u00a0for(auto&amp;x:nums)\/\/\u904d\u5386\u6570\u7ec4<\/p>\n\n\n\n<p>&nbsp; &nbsp; &nbsp; &nbsp;{<\/p>\n\n\n\n<p>\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 pre+=x;\/\/\u524d\u7f00\u548c<\/p>\n\n\n\n<p>\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 if(mp.find(pre-k)!=mp.end())\/\/\u5bfb\u627ekey<\/p>\n\n\n\n<p>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; {<\/p>\n\n\n\n<p>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; count+=mp[pre-k];<\/p>\n\n\n\n<p>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }<\/p>\n\n\n\n<p>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; mp[pre]++;<\/p>\n\n\n\n<p>&nbsp; &nbsp; &nbsp; &nbsp;}<\/p>\n\n\n\n<p>&nbsp; &nbsp; &nbsp; &nbsp;return count;<\/p>\n\n\n\n<p>&nbsp; &nbsp; }<\/p>\n\n\n\n<p>};<\/p>\n\n\n\n<p><\/p>\n\n\n\n<p><strong>\u4e5f\u53ef\u7528C\u8bed\u8a00\u6570\u7ec4\u6a21\u62dfHash\u8868!!!<\/strong><\/p>\n\n\n\n<p class=\"has-accent-3-color has-text-color has-link-color wp-elements-f7fc679853db9e60036758c57ac965e6\"><strong>#define HASH(n) hashTable[n+10000000]<\/strong><\/p>\n\n\n\n<p><strong>\/\/\u5f3a\u884c\u4f7f\u4e0b\u6807\u4e0d\u53ef\u80fd\u4e3a\u8d1f\u6570<\/strong><\/p>\n\n\n\n<p>int subarraySum(int* nums, int numsSize, int k)<\/p>\n\n\n\n<p>{<\/p>\n\n\n\n<p>&nbsp; &nbsp; int hashTable[20000001] = {0};<\/p>\n\n\n\n<p>&nbsp; &nbsp; int pre = 0;<\/p>\n\n\n\n<p>&nbsp; &nbsp; int count = 0;<\/p>\n\n\n\n<p>&nbsp; &nbsp; HASH(0)++;<\/p>\n\n\n\n<p>&nbsp; &nbsp; for (int i = 0; i &lt; numsSize; i++) {<\/p>\n\n\n\n<p>&nbsp; &nbsp; &nbsp; &nbsp; pre += nums[i];<\/p>\n\n\n\n<p>&nbsp; &nbsp; &nbsp; &nbsp; if (HASH(pre &#8211; k))<\/p>\n\n\n\n<p>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; count+=HASH(pre-k);<\/p>\n\n\n\n<p>&nbsp; &nbsp; &nbsp; &nbsp; HASH(pre)++;<\/p>\n\n\n\n<p>&nbsp; &nbsp; }<\/p>\n\n\n\n<p>&nbsp; &nbsp; return count;<\/p>\n\n\n\n<p>}<\/p>\n","protected":false},"excerpt":{"rendered":"<p>\u65b9\u6cd5\u4e00:\u679a\u4e3e \u65f6\u95f4\u590d\u6742\u5ea6O(n*n) \u5bf9\u4e8e\u6bcf\u4e2ai\u6211\u4eec\u9700\u8981\u5faa\u73af\u6240\u6709\u7684j \u8fd9\u8fd8\u53ef\u4ee5\u518d\u8fdb\u4e00\u6b65\u4f18\u5316! \u65b9\u6cd5\u4e8c:\u54c8\u5e0c\u8868+ [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[8,9],"tags":[],"class_list":["post-194","post","type-post","status-publish","format-standard","hentry","category-8","category-9"],"_links":{"self":[{"href":"https:\/\/womeifei.cn\/index.php\/wp-json\/wp\/v2\/posts\/194","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/womeifei.cn\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/womeifei.cn\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/womeifei.cn\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/womeifei.cn\/index.php\/wp-json\/wp\/v2\/comments?post=194"}],"version-history":[{"count":1,"href":"https:\/\/womeifei.cn\/index.php\/wp-json\/wp\/v2\/posts\/194\/revisions"}],"predecessor-version":[{"id":197,"href":"https:\/\/womeifei.cn\/index.php\/wp-json\/wp\/v2\/posts\/194\/revisions\/197"}],"wp:attachment":[{"href":"https:\/\/womeifei.cn\/index.php\/wp-json\/wp\/v2\/media?parent=194"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/womeifei.cn\/index.php\/wp-json\/wp\/v2\/categories?post=194"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/womeifei.cn\/index.php\/wp-json\/wp\/v2\/tags?post=194"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}