{"id":103,"date":"2022-12-26T20:36:39","date_gmt":"2022-12-26T12:36:39","guid":{"rendered":"https:\/\/forelink.top\/?p=103"},"modified":"2022-12-26T20:37:02","modified_gmt":"2022-12-26T12:37:02","slug":"%e5%8a%a8%e6%80%81%e8%a7%84%e5%88%92%ef%bc%88week8%ef%bc%89","status":"publish","type":"post","link":"https:\/\/forelink.top\/index.php\/2022\/12\/26\/%e5%8a%a8%e6%80%81%e8%a7%84%e5%88%92%ef%bc%88week8%ef%bc%89\/","title":{"rendered":"\u52a8\u6001\u89c4\u5212\uff08Week8\uff09"},"content":{"rendered":"\n<h2 class=\"wp-block-heading\">T1 \u75af\u72c2\u7684\u91c7\u836f<\/h2>\n\n\n\n<p>\u9898\u76ee\uff1a<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><div class='fancybox-wrapper lazyload-container-unload' data-fancybox='post-images' href='https:\/\/forelink.top\/wp-content\/uploads\/2022\/12\/fkdcy.png'><img class=\"lazyload lazyload-style-1\" src=\"data:image\/svg+xml;base64,PCEtLUFyZ29uTG9hZGluZy0tPgo8c3ZnIHdpZHRoPSIxIiBoZWlnaHQ9IjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgc3Ryb2tlPSIjZmZmZmZmMDAiPjxnPjwvZz4KPC9zdmc+\"  loading=\"lazy\" decoding=\"async\" width=\"981\" height=\"757\" data-original=\"https:\/\/forelink.top\/wp-content\/uploads\/2022\/12\/fkdcy.png\" src=\"data:image\/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB\/AAffA0nNPuCLAAAAAElFTkSuQmCC\" alt=\"\" class=\"wp-image-104\"  sizes=\"auto, (max-width: 981px) 100vw, 981px\" \/><\/div><\/figure>\n\n\n\n<p>\u662f\u7ecf\u5178\u768401\u80cc\u5305\u95ee\u9898\uff0c\u5728\u535a\u5ba2\u53e6\u4e00\u5904\u6709\u4ecb\u7ecd\uff0c\u63a8\u51fa \u72b6\u6001\u8f6c\u79fb\u65b9\u7a0b\u5373\u53ef\u3002<\/p>\n\n\n\n<p>\u4ee3\u7801\u5982\u4e0b\u3002<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>#include &lt;iostream&gt;\nusing namespace std;\nlong long int T,n;\nlong long int t&#91;10005],w&#91;10005];\nlong long int dp&#91;10000005];\nint main(){\n\tcin&gt;&gt;T&gt;&gt;n;\n\tfor(int i=1;i&lt;=n;i++) \n\tcin&gt;&gt;t&#91;i]&gt;&gt;w&#91;i];\n\tfor(int i=1;i&lt;=n;i++){\n\t\tfor(int l=1;l&lt;=T;l++){\n\t\t\tif(l&gt;=t&#91;i])\n\t\t\tdp&#91;l]=max(dp&#91;l],dp&#91;l-t&#91;i]]+w&#91;i]);\n\t\t}\n\t}\n\tcout&lt;&lt;dp&#91;T];\n\treturn 0;\n}<\/code><\/pre>\n\n\n\n<hr class=\"wp-block-separator has-text-color has-black-color has-alpha-channel-opacity has-black-background-color has-background is-style-wide\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">T2 \u6446\u82b1<\/h2>\n\n\n\n<p>\u9898\u76ee\uff1a<\/p>\n\n\n\n<p>\u8ba1\u6570dp<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><div class='fancybox-wrapper lazyload-container-unload' data-fancybox='post-images' href='https:\/\/forelink.top\/wp-content\/uploads\/2022\/12\/baihua.png'><img class=\"lazyload lazyload-style-1\" src=\"data:image\/svg+xml;base64,PCEtLUFyZ29uTG9hZGluZy0tPgo8c3ZnIHdpZHRoPSIxIiBoZWlnaHQ9IjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgc3Ryb2tlPSIjZmZmZmZmMDAiPjxnPjwvZz4KPC9zdmc+\"  loading=\"lazy\" decoding=\"async\" width=\"980\" height=\"742\" data-original=\"https:\/\/forelink.top\/wp-content\/uploads\/2022\/12\/baihua.png\" src=\"data:image\/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB\/AAffA0nNPuCLAAAAAElFTkSuQmCC\" alt=\"\" class=\"wp-image-105\"  sizes=\"auto, (max-width: 980px) 100vw, 980px\" \/><\/div><\/figure>\n\n\n\n<p>\u7528\u586b\u8868\u6cd5\u7684\u601d\u60f3\u53ef\u4ee5\u5f97\u51fa\u66f4\u65b0dp\u6570\u7ec4\u7684\u5f0f\u5b50\u3002<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>#include &lt;iostream&gt;\nusing namespace std;\nconst long long int x=1000007;\nlong long int n,m,a&#91;104],dp&#91;105]&#91;105];\n\/\/dp&#91;i]&#91;j]\u8bb0\u5f55\u6709i\u79cd\u82b1\uff0c\u8981\u6446j\u76c6\u65f6\u7684\u6446\u6cd5\u3002\nint main(){\n\tdp&#91;0]&#91;0]=1;\/\/\u4e00\u79cd\u82b1\u90fd\u6ca1\u6709\u7684\u8bdd\u662f\u4e00\u79cd\u60c5\u51b5\u3002\n\tcin&gt;&gt;n&gt;&gt;m;\n\tfor(long long int i=1;i&lt;=n;i++)\n\tcin&gt;&gt;a&#91;i];\n\tfor(long long int i=1;i&lt;=n;i++){\n\t\tfor(long long int l=0;l&lt;=m;l++){\n\t\t\tfor(long long int p=0;p&lt;=min(l,a&#91;i]);p++){\n\t\t\t\tdp&#91;i]&#91;l]=(dp&#91;i]&#91;l]+dp&#91;i-1]&#91;l-p])%x;\/\/\u6bcf\u6b21\u90fd\u53d6\u6a21\u3002\n\t\t\t}\n\t\t}\n\t}\n\tcout&lt;&lt;dp&#91;n]&#91;m];\n\treturn 0;\n}<\/code><\/pre>\n\n\n\n<hr class=\"wp-block-separator has-text-color has-black-color has-alpha-channel-opacity has-black-background-color has-background is-style-wide\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">T3 \u6a31\u82b1<\/h2>\n\n\n\n<p>\u9898\u76ee\uff1a<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><div class='fancybox-wrapper lazyload-container-unload' data-fancybox='post-images' href='https:\/\/forelink.top\/wp-content\/uploads\/2022\/12\/yh.png'><img class=\"lazyload lazyload-style-1\" src=\"data:image\/svg+xml;base64,PCEtLUFyZ29uTG9hZGluZy0tPgo8c3ZnIHdpZHRoPSIxIiBoZWlnaHQ9IjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgc3Ryb2tlPSIjZmZmZmZmMDAiPjxnPjwvZz4KPC9zdmc+\"  loading=\"lazy\" decoding=\"async\" width=\"971\" height=\"898\" data-original=\"https:\/\/forelink.top\/wp-content\/uploads\/2022\/12\/yh.png\" src=\"data:image\/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB\/AAffA0nNPuCLAAAAAElFTkSuQmCC\" alt=\"\" class=\"wp-image-106\"  sizes=\"auto, (max-width: 971px) 100vw, 971px\" \/><\/div><\/figure>\n\n\n\n<p>\u770b\u9898\u53ef\u4ee5\u77e5\u9053\u6709\u4e9b\u7f8e\u5b66\u503c\u662f\u53ef\u4ee5\u62ff\u5f88\u591a\u751a\u81f3\u65e0\u9650\u6b21\u7684\uff0c\u6240\u4ee5\u8fd9\u662f\u4e00\u4e2a\u591a\u91cd\u80cc\u5305\u95ee\u9898\uff0c\u53ef\u4ee5\u7528\u4e8c\u8fdb\u5236\u4f18\u5316\u5c06\u590d\u6742\u5ea6\u7531O\uff08n^3\uff09\u4f18\u5316\u81f3O\uff08n^2 logn\uff09<\/p>\n\n\n\n<p>\u53ef\u4ee5\u628a\u6ca1\u6709\u6b21\u6570\u9650\u5236\u7684\u7f8e\u5b66\u503c\u6b21\u6570\u8bbe\u6210\u4e00\u4e2a\u6bd4\u8f83\u5927\u7684\u6570\u3002<\/p>\n\n\n\n<p>\u4ee3\u7801\u5982\u4e0b\u3002<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>#include &lt;bits\/stdc++.h&gt;\nusing namespace std;\nint N,V;\nint v&#91;100000005],w&#91;100000006],dp&#91;100000005];\nlong long int hs,ms,he,me;\nint main(){\n\tscanf(\"%lld:%lld %lld:%lld %lld\",&amp;hs,&amp;ms,&amp;he,&amp;me,&amp;N);\n\the-=hs;\n\tif(me-ms&lt;0)\n\tme=me-ms+60,he--,me+=he*60;\n\telse me = me - ms + he * 60;\n\tV=me;\n\tint count=0;\n\t\/\/\u5206\u62102^0(1),2^1(2),2^2(4),2^3(8)...\u4f59\u6570\u7ec4\u3002\n\t\/\/O(n^3)-&gt;O(n^2logS\uff09\n\tfor(int i=1;i&lt;=N;++i){\n\t\tint z,x,c;\n\t\tcin&gt;&gt;z&gt;&gt;x&gt;&gt;c;\n\t\tif(c==0) c=9999999;\n\t\tfor(int k=1;k&lt;=c;k*=2){\n\t\t\tcount++;\n\t\t\tv&#91;count]=z*k;\n\t\t\tw&#91;count]=x*k;\n\t\t\tc-=k;\n\t\t}\n\t\tif(c&gt;0){\n\t\t\tcount++;\n\t\t\tv&#91;count]=z*c;\n\t\t\tw&#91;count]=x*c;\n\t\t}\n\t}\n\tfor(int i=1;i&lt;=count;++i){\n\t\tfor(int k=V;k&gt;=0;k--){\n\t\t\tif(k&gt;=v&#91;i])\n\t\t\tdp&#91;k]=max(dp&#91;k],dp&#91;k-v&#91;i]]+w&#91;i]);\n\t\t}\n\t}\n\tcout&lt;&lt;dp&#91;V];\n\treturn 0;\n}<\/code><\/pre>\n\n\n\n<hr class=\"wp-block-separator has-text-color has-black-color has-alpha-channel-opacity has-black-background-color has-background is-style-wide\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">T4 \u91d1\u660e\u7684\u9884\u7b97\u65b9\u6848<\/h2>\n\n\n\n<p>\u9898\u76ee\uff1a<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><div class='fancybox-wrapper lazyload-container-unload' data-fancybox='post-images' href='https:\/\/forelink.top\/wp-content\/uploads\/2022\/12\/jmdysfa.png'><img class=\"lazyload lazyload-style-1\" src=\"data:image\/svg+xml;base64,PCEtLUFyZ29uTG9hZGluZy0tPgo8c3ZnIHdpZHRoPSIxIiBoZWlnaHQ9IjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgc3Ryb2tlPSIjZmZmZmZmMDAiPjxnPjwvZz4KPC9zdmc+\"  loading=\"lazy\" decoding=\"async\" width=\"875\" height=\"938\" data-original=\"https:\/\/forelink.top\/wp-content\/uploads\/2022\/12\/jmdysfa.png\" src=\"data:image\/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB\/AAffA0nNPuCLAAAAAElFTkSuQmCC\" alt=\"\" class=\"wp-image-107\"  sizes=\"auto, (max-width: 875px) 100vw, 875px\" \/><\/div><\/figure>\n\n\n\n<p>\u8fd9\u9898\u5b58\u9644\u4ef6\u6570\u636e\u6280\u5de7\u662f\u5f00\u4e8c\u7ef4\u6570\u7ec4cost[x][y],x\u4e3a\u7b2cx\u4ef6\u7269\u54c1\uff0c\u5f53y\u4e3a0\u65f6\u4e3a\u8fd9\u4ef6\u7269\u54c1\u672c\u8eab\uff0cy\u4e3a1\u65f6\u4e3a\u7b2cx\u4ef6\u7269\u54c1\u7684\u9644\u4ef61\uff0cy\u4e3a2\u65f6\u4e3a\u7b2cx\u4ef6\u7269\u54c1\u7684\u9644\u4ef62\u3002<\/p>\n\n\n\n<p>\u7136\u540e\u6bcf\u6b21\u9009\u62e9\u6709\u4e94\u79cd\u60c5\u51b5\uff0c<\/p>\n\n\n\n<p>\u2460\u53ea\u4e70\u4e3b\u4ef6<br>\u2461\u4e70\u4e3b\u4ef6+\u9644\u4ef61<br>\u2462\u4e70\u4e3b\u4ef6+\u9644\u4ef62<br>\u2463\u4e70\u4e3b\u4ef6+\u9644\u4ef61+\u9644\u4ef62<br>\u2464\u4e0d\u4e70\u4e3b\u4ef6\u3002<\/p>\n\n\n\n<p>\u9664\u4e861\u548c5\u51b2\u7a81\u5916\uff0c\u5176\u4ed6\u56db\u4e2a\u90fd\u80fd\u5224\u65ad\u540e\u66f4\u65b0\u65b0\u7684dp\u503c\uff0c\u987a\u5e8f\u4efb\u610f\uff0c\u679a\u4e3e\u8fd9\u4e94\u79cd\u60c5\u51b5\uff0c\u586b\u8868\u5373\u53ef\u3002<\/p>\n\n\n\n<p>\u4ee3\u7801\u5982\u4e0b\u3002<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>#include &lt;iostream&gt;\n#include &lt;cstring&gt;\nusing namespace std;\nint m,n;\nint dp&#91;70]&#91;40000];\nint cost&#91;70]&#91;5],imp&#91;70]&#91;5];\nint main(){\n\tcin&gt;&gt;m&gt;&gt;n;\n\tint c,im,f;\n\tfor(int i=1;i&lt;=n;i++){\n\t\tcin&gt;&gt;c&gt;&gt;im&gt;&gt;f;\n\t\tif(!f){\n\t\t\tcost&#91;i]&#91;0]=c;\n\t\t\timp&#91;i]&#91;0]=im;\n\t\t}\n\t\telse{\n\t\t\tif(!cost&#91;f]&#91;1]){\n\t\t\t\tcost&#91;f]&#91;1]=c;\n\t\t\t\timp&#91;f]&#91;1]=im;\n\t\t\t}\n\t\t\telse{\n\t\t\t\tcost&#91;f]&#91;2]=c;\n\t\t\t\timp&#91;f]&#91;2]=im;\n\t\t\t}\n\t\t}\n\t}\n\tmemset(dp,0,sizeof(dp));\n\tfor(int i=1;i&lt;=n;i++){\n\t\tfor(int l=1;l&lt;=m;l++){\n\t\t\tif(l-cost&#91;i]&#91;0]&gt;=0){\n\t\t\t\tdp&#91;i]&#91;l]=max(dp&#91;i-1]&#91;l],dp&#91;i-1]&#91;l-cost&#91;i]&#91;0]]+cost&#91;i]&#91;0]*imp&#91;i]&#91;0]);\n\t\t\t\tif(l-cost&#91;i]&#91;0]-cost&#91;i]&#91;1]&gt;=0){\n\t\t\t\tdp&#91;i]&#91;l]=max(dp&#91;i]&#91;l],dp&#91;i-1]&#91;l-cost&#91;i]&#91;0]-cost&#91;i]&#91;1]]+cost&#91;i]&#91;0]*imp&#91;i]&#91;0]+cost&#91;i]&#91;1]*imp&#91;i]&#91;1]);\n\t\t\t\t}\n\t\t\t\tif(l-cost&#91;i]&#91;0]-cost&#91;i]&#91;2]&gt;=0){\n\t\t\t\tdp&#91;i]&#91;l]=max(dp&#91;i]&#91;l],dp&#91;i-1]&#91;l-cost&#91;i]&#91;0]-cost&#91;i]&#91;2]]+cost&#91;i]&#91;0]*imp&#91;i]&#91;0]+cost&#91;i]&#91;2]*imp&#91;i]&#91;2]);\n\t\t\t\t}\n\t\t\t\tif(l-cost&#91;i]&#91;0]-cost&#91;i]&#91;1]-cost&#91;i]&#91;2]&gt;=0){\n\t\t\t\t\tdp&#91;i]&#91;l]=max(dp&#91;i]&#91;l],dp&#91;i-1]&#91;l-cost&#91;i]&#91;0]-cost&#91;i]&#91;1]-cost&#91;i]&#91;2]]+cost&#91;i]&#91;0]*imp&#91;i]&#91;0]+cost&#91;i]&#91;1]*imp&#91;i]&#91;1]+cost&#91;i]&#91;2]*imp&#91;i]&#91;2]);\n\t\t\t\t}\n\t\t\t}\n\t\t\telse\n\t\t\tdp&#91;i]&#91;l]=dp&#91;i-1]&#91;l];\n\t\t}\n\t}\n\tcout&lt;&lt;dp&#91;n]&#91;m];\n\treturn 0;\n}<\/code><\/pre>\n\n\n\n<hr class=\"wp-block-separator has-text-color has-black-color has-alpha-channel-opacity has-black-background-color has-background is-style-wide\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">\u603b\u7ed3\uff1a<\/h2>\n\n\n\n<p>\u8bb0\u5fc6\u5316\u641c\u7d22&gt;dp\uff1f\uff09\u3002<br>\u4ee3\u7801\u5199\u7684\u597d\u4e11\u5440\u3002\uff08\u4e0d\u662f\u4ec0\u4e48\u5927\u95ee\u9898\u5c31\u662f\uff09<\/p>\n","protected":false},"excerpt":{"rendered":"<p>T1 \u75af\u72c2\u7684\u91c7\u836f \u9898\u76ee\uff1a \u662f\u7ecf\u5178\u768401\u80cc\u5305\u95ee\u9898\uff0c\u5728\u535a\u5ba2\u53e6\u4e00\u5904\u6709\u4ecb\u7ecd\uff0c\u63a8\u51fa \u72b6\u6001\u8f6c\u79fb\u65b9\u7a0b\u5373\u53ef\u3002 \u4ee3\u7801\u5982\u4e0b\u3002 T2 [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_import_markdown_pro_load_document_selector":0,"_import_markdown_pro_submit_text_textarea":"","footnotes":""},"categories":[8,3],"tags":[],"class_list":["post-103","post","type-post","status-publish","format-standard","hentry","category-8","category-3"],"_links":{"self":[{"href":"https:\/\/forelink.top\/index.php\/wp-json\/wp\/v2\/posts\/103","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/forelink.top\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/forelink.top\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/forelink.top\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/forelink.top\/index.php\/wp-json\/wp\/v2\/comments?post=103"}],"version-history":[{"count":2,"href":"https:\/\/forelink.top\/index.php\/wp-json\/wp\/v2\/posts\/103\/revisions"}],"predecessor-version":[{"id":109,"href":"https:\/\/forelink.top\/index.php\/wp-json\/wp\/v2\/posts\/103\/revisions\/109"}],"wp:attachment":[{"href":"https:\/\/forelink.top\/index.php\/wp-json\/wp\/v2\/media?parent=103"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/forelink.top\/index.php\/wp-json\/wp\/v2\/categories?post=103"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/forelink.top\/index.php\/wp-json\/wp\/v2\/tags?post=103"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}