{"id":238,"date":"2024-06-26T22:31:01","date_gmt":"2024-06-26T14:31:01","guid":{"rendered":"http:\/\/www.heartwarming.online:8003\/?p=238"},"modified":"2024-06-26T22:31:03","modified_gmt":"2024-06-26T14:31:03","slug":"%e4%b8%80%e7%bb%b4%e6%95%b0%e7%bb%84%e7%9a%84%e5%b7%ae%e5%88%86","status":"publish","type":"post","link":"https:\/\/blog.heartwarming.online\/index.php\/2024\/06\/26\/%e4%b8%80%e7%bb%b4%e6%95%b0%e7%bb%84%e7%9a%84%e5%b7%ae%e5%88%86\/","title":{"rendered":"\u4e00\u7ef4\u6570\u7ec4\u7684\u5dee\u5206"},"content":{"rendered":"\n<h2 class=\"wp-block-heading\">\u57fa\u672c\u539f\u7406\uff1a<\/h2>\n\n\n\n<p>1\u3001\u5b9a\u4e49\u4e24\u4e2a\u6570\u7ec4a,b,a[i]=b1+b2+&#8230;&#8230;.+bi\uff0c\u4e5f\u5c31\u662fa\u4f7fb\u7684\u524d\u7f00\u548c\uff0c\u53cd\u8fc7\u6765b\u662fa\u7684\u5dee\u5206\uff1b<\/p>\n\n\n\n<p>b[1],b[2],b[3],b[4],&#8230;&#8230;,b[n];<\/p>\n\n\n\n<p>a[1],a[2],a[3],a[4],&#8230;&#8230;.,a[n];<\/p>\n\n\n\n<p>b[i]=a[i]-a[i-1];\u4e5f\u5c31\u662fa\u662fb\u7684\u524d\u7f00\u548c\uff0c\u53cd\u8fc7\u6765\uff0cb\u5c31\u662fa\u7684\u5dee\u5206\u3002<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">\u8fd0\u7528\uff1a<\/h2>\n\n\n\n<p>\u7528\u4e8e\u5728\u67d0\u4e00\u6570\u636e\u7684[l,r]\u533a\u95f4\u4e0a\u6bcf\u4e2a\u6570\u90fd\u52a0\u4e0ac;<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><div class='fancybox-wrapper lazyload-container-unload' data-fancybox='post-images' href='https:\/\/blog.heartwarming.online\/wp-content\/uploads\/2024\/06\/image-7-1024x602.png'><img class=\"lazyload lazyload-style-1\" src=\"data:image\/svg+xml;base64,PCEtLUFyZ29uTG9hZGluZy0tPgo8c3ZnIHdpZHRoPSIxIiBoZWlnaHQ9IjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgc3Ryb2tlPSIjZmZmZmZmMDAiPjxnPjwvZz4KPC9zdmc+\"  loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"602\" data-original=\"https:\/\/blog.heartwarming.online\/wp-content\/uploads\/2024\/06\/image-7-1024x602.png\" src=\"data:image\/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB\/AAffA0nNPuCLAAAAAElFTkSuQmCC\" alt=\"\" class=\"wp-image-239\"  sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/div><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\">\u5b9e\u73b0\u8fc7\u7a0b\uff1a<\/h2>\n\n\n\n<p>1\u3001\u6784\u5efa\u539f\u6570\u7ec4a\u7684\u5dee\u5206\u6570\u7ec4b<\/p>\n\n\n\n<p>2\u3001\u5728[l,r]\u533a\u95f4\u4e0a\u52a0\u4e0ac;<\/p>\n\n\n\n<p>3\u3001insert\u51fd\u6570\u7684\u6784\u5efa\u3002<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">\u4ee3\u7801\u5b9e\u73b0\uff1a<\/h2>\n\n\n\n<pre class=\"wp-block-code\"><code>#include &lt;iostream&gt;<br>using namespace std;<br>const int N=100010;<br>int a&#91;N],b&#91;N];<br>int n,m;<br>void insert(int l,int r,int c)<br>{<br> &nbsp; &nbsp;b&#91;l]+=c;<br> &nbsp; &nbsp;b&#91;r+1]-=c;<br>}<br>int main()<br>{<br> &nbsp; &nbsp;int l,r,c;<br> &nbsp; &nbsp;scanf(\"%d%d\",&amp;n,&amp;m);<br> &nbsp; &nbsp;for(int i=1;i&lt;=n;i++)<br> &nbsp;  {<br> &nbsp; &nbsp; &nbsp; &nbsp;cin&gt;&gt;a&#91;i];<br> &nbsp; &nbsp; &nbsp; &nbsp;insert(i,i,a&#91;i]);<br> &nbsp;  }<br> &nbsp; &nbsp;while(m--)<br> &nbsp;  {<br> &nbsp; &nbsp; &nbsp; &nbsp;scanf(\"%d%d%d\",&amp;l,&amp;r,&amp;c);<br> &nbsp; &nbsp; &nbsp; &nbsp;insert(l,r,c);<br> &nbsp; &nbsp; &nbsp; &nbsp;<br> &nbsp;  }<br> &nbsp; &nbsp;for(int i=1;i&lt;=n;i++)<br> &nbsp;  {<br> &nbsp; &nbsp; &nbsp; &nbsp;b&#91;i]=b&#91;i-1]+b&#91;i];<br> &nbsp;  }<br> &nbsp; &nbsp;for(int i=1;i&lt;=n;i++)<br> &nbsp; &nbsp; &nbsp; &nbsp;printf(\"%d \",b)<br> &nbsp; &nbsp;return 0;<br>}<\/code><\/pre>\n","protected":false},"excerpt":{"rendered":"<p>\u57fa\u672c\u539f\u7406\uff1a 1\u3001\u5b9a\u4e49\u4e24\u4e2a\u6570\u7ec4a,b,a[i]=b1+b2+&#8230;&#8230;.+bi\uff0c\u4e5f\u5c31\u662fa\u4f7fb\u7684 [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[4,32],"tags":[],"class_list":["post-238","post","type-post","status-publish","format-standard","hentry","category-blog","category-32"],"jetpack_sharing_enabled":true,"jetpack_featured_media_url":"","_links":{"self":[{"href":"https:\/\/blog.heartwarming.online\/index.php\/wp-json\/wp\/v2\/posts\/238","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/blog.heartwarming.online\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/blog.heartwarming.online\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/blog.heartwarming.online\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/blog.heartwarming.online\/index.php\/wp-json\/wp\/v2\/comments?post=238"}],"version-history":[{"count":1,"href":"https:\/\/blog.heartwarming.online\/index.php\/wp-json\/wp\/v2\/posts\/238\/revisions"}],"predecessor-version":[{"id":240,"href":"https:\/\/blog.heartwarming.online\/index.php\/wp-json\/wp\/v2\/posts\/238\/revisions\/240"}],"wp:attachment":[{"href":"https:\/\/blog.heartwarming.online\/index.php\/wp-json\/wp\/v2\/media?parent=238"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/blog.heartwarming.online\/index.php\/wp-json\/wp\/v2\/categories?post=238"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/blog.heartwarming.online\/index.php\/wp-json\/wp\/v2\/tags?post=238"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}