{"id":110,"date":"2022-12-26T20:47:04","date_gmt":"2022-12-26T12:47:04","guid":{"rendered":"https:\/\/forelink.top\/?p=110"},"modified":"2022-12-26T20:47:04","modified_gmt":"2022-12-26T12:47:04","slug":"%e5%8a%a8%e6%80%81%e8%a7%84%e5%88%92%ef%bc%88week7%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%88week7%ef%bc%89\/","title":{"rendered":"\u52a8\u6001\u89c4\u5212\uff08Week7\uff09"},"content":{"rendered":"\n<h2 class=\"wp-block-heading\">T1 \u91c7\u836f<\/h2>\n\n\n\n<p>\u592a\u5178\u4e86\u3002<\/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\/01.png'><img class=\"lazyload lazyload-style-1\" src=\"data:image\/svg+xml;base64,PCEtLUFyZ29uTG9hZGluZy0tPgo8c3ZnIHdpZHRoPSIxIiBoZWlnaHQ9IjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgc3Ryb2tlPSIjZmZmZmZmMDAiPjxnPjwvZz4KPC9zdmc+\"  loading=\"lazy\" decoding=\"async\" width=\"871\" height=\"813\" data-original=\"https:\/\/forelink.top\/wp-content\/uploads\/2022\/12\/01.png\" src=\"data:image\/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB\/AAffA0nNPuCLAAAAAElFTkSuQmCC\" alt=\"\" class=\"wp-image-111\"  sizes=\"auto, (max-width: 871px) 100vw, 871px\" \/><\/div><\/figure>\n\n\n\n<p>\u5927\u5bb6\u95ed\u7740\u773c\u775b\u90fd\u80fd\u6572\u51fa\u6765\u3002\uff08\uff1f\uff09<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>#include &lt;iostream>\r\nusing namespace std;\r\nint T,M;\r\nint t&#91;1005],v&#91;1005],dp&#91;1005];\r\nint main(){\r\n\tcin>>T>>M;\r\n\tfor(int i=1;i&lt;=M;i++){\r\n\t\tcin>>t&#91;i]>>v&#91;i];\r\n\t}\r\n\t\r\n\tfor(int i=1;i&lt;=M;i++){\r\n\t\tfor(int p=T;p>=1;p--){\r\n\t\t\tif(p>=t&#91;i]){\r\n\t\t\t\tdp&#91;p]=max(dp&#91;p],dp&#91;p-t&#91;i]]+v&#91;i]);\r\n\t\t\t}\r\n\t\t}\r\n\t}\r\n\tcout&lt;&lt;dp&#91;T];\r\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 \u6700\u957f\u4e0a\u5347\u5b50\u5e8f\u5217<\/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\/lss.png'><img class=\"lazyload lazyload-style-1\" src=\"data:image\/svg+xml;base64,PCEtLUFyZ29uTG9hZGluZy0tPgo8c3ZnIHdpZHRoPSIxIiBoZWlnaHQ9IjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgc3Ryb2tlPSIjZmZmZmZmMDAiPjxnPjwvZz4KPC9zdmc+\"  loading=\"lazy\" decoding=\"async\" width=\"875\" height=\"676\" data-original=\"https:\/\/forelink.top\/wp-content\/uploads\/2022\/12\/lss.png\" src=\"data:image\/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB\/AAffA0nNPuCLAAAAAElFTkSuQmCC\" alt=\"\" class=\"wp-image-112\"  sizes=\"auto, (max-width: 875px) 100vw, 875px\" \/><\/div><\/figure>\n\n\n\n<p>\u9006\u5411\u9632\u5fa1\u5bfc\u5f39\uff1f\uff09<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>#include &lt;iostream>\r\nusing namespace std;\r\nconst int N=1e6+5;\r\nint n;\r\nint num&#91;5005];\r\nint dp&#91;5005];\r\nint ans=1;\r\nint main(){\r\n\tcin>>n;\r\n\tfor(int i=1;i&lt;=n;i++){\r\n\t\tcin>>num&#91;i];\r\n\t\tfor(int j=i-1;j>=1;j--){\r\n\t\t\tif(num&#91;j]&lt;num&#91;i]&amp;&amp;dp&#91;i]&lt;dp&#91;j]+1){\r\n\t\t\t\tdp&#91;i]=dp&#91;j]+1;\r\n\t\t\t}\r\n\t\t}\r\n\t\tif(dp&#91;i]==0)\r\n\t\tdp&#91;i]=1;\r\n\t\tif(dp&#91;i]>ans) ans=dp&#91;i];\r\n\t}\r\n\tcout&lt;&lt;ans;\r\n\treturn 0;\r\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 \u6700\u5927\u5e8f\u5217\u548c<\/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\/2323.png'><img class=\"lazyload lazyload-style-1\" src=\"data:image\/svg+xml;base64,PCEtLUFyZ29uTG9hZGluZy0tPgo8c3ZnIHdpZHRoPSIxIiBoZWlnaHQ9IjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgc3Ryb2tlPSIjZmZmZmZmMDAiPjxnPjwvZz4KPC9zdmc+\"  loading=\"lazy\" decoding=\"async\" width=\"878\" height=\"805\" data-original=\"https:\/\/forelink.top\/wp-content\/uploads\/2022\/12\/2323.png\" src=\"data:image\/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB\/AAffA0nNPuCLAAAAAElFTkSuQmCC\" alt=\"\" class=\"wp-image-113\"  sizes=\"auto, (max-width: 878px) 100vw, 878px\" \/><\/div><\/figure>\n\n\n\n<p>\u66f4\u65b0\u7684\u5f0f\u5b50\u540c\u6837\u5f88\u597d\u627e\u5230\u3002<\/p>\n\n\n\n<p>\u8981\u6ce8\u610f\u7684\u53ea\u662f\u5224\u65ad\u7684\u6761\u4ef6\u800c\u5df2\u3002<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>#include &lt;iostream>\r\nusing namespace std;\r\nint n,ans=-999999;\r\nint num&#91;200005],dp&#91;200005];\r\nint main(){\r\n\tcin>>n;\r\n\tfor(int i=1;i&lt;=n;i++){\r\n\t\tcin>>num&#91;i];\r\n\t\tdp&#91;i]=num&#91;i];\r\n\t\tif(i!=1&amp;&amp;dp&#91;i-1]>=0){\r\n\t\t\tdp&#91;i]=dp&#91;i]+dp&#91;i-1];\r\n\t\t}\r\n\t\tif(dp&#91;i]>ans) ans=dp&#91;i];\r\n\t}\r\n\tcout&lt;&lt;ans;\r\n\treturn 0;\r\n}<\/code><\/pre>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">T4 LCS<\/h2>\n\n\n\n<p>\u592a\u5178\u4e86\uff0c\u5567\u5567\u5567\u3002<\/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\/LCS.png'><img class=\"lazyload lazyload-style-1\" src=\"data:image\/svg+xml;base64,PCEtLUFyZ29uTG9hZGluZy0tPgo8c3ZnIHdpZHRoPSIxIiBoZWlnaHQ9IjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgc3Ryb2tlPSIjZmZmZmZmMDAiPjxnPjwvZz4KPC9zdmc+\"  loading=\"lazy\" decoding=\"async\" width=\"967\" height=\"935\" data-original=\"https:\/\/forelink.top\/wp-content\/uploads\/2022\/12\/LCS.png\" src=\"data:image\/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB\/AAffA0nNPuCLAAAAAElFTkSuQmCC\" alt=\"\" class=\"wp-image-114\"  sizes=\"auto, (max-width: 967px) 100vw, 967px\" \/><\/div><\/figure>\n\n\n\n<p>\u4e5f\u662f\u5927\u5bb6\u95ed\u7740\u773c\u775b\u4e5f\u80fd\u6572\u51fa\u6765\u7684\u4e1c\u897f\uff08\uff1f\uff09<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>#include &lt;bits\/stdc++.h>\r\nusing namespace std;\r\nint dp&#91;3005]&#91;3005];\r\nint max_,a1,b1;\r\nstring ans;\r\nint main(){\r\n\tstring a,b;\r\n\tgetline(cin,a);\r\n\tgetline(cin,b);\r\n\tint len1=a.length();\r\n\tint len2=b.length();\r\n\t\/\/\u77e9\u9635\u8fb9\u8fb9\u8981\u4ece0\u5f00\u59cb\uff0c\u4e0b\u68070\u4e3adp\u4e2d\u76841.\r\n\tfor(int i=0;i&lt;len1;i++){\r\n\t\tfor(int l=0;l&lt;len2;l++){\r\n\t\t\tif(a&#91;i]==b&#91;l]) dp&#91;i+1]&#91;l+1]=dp&#91;i]&#91;l]+1;\r\n\t\t\telse dp&#91;i+1]&#91;l+1]=max(dp&#91;i]&#91;l+1],dp&#91;i+1]&#91;l]);\r\n\t\t\tif(dp&#91;i+1]&#91;l+1]>max_){\r\n\t\t\t\tmax_=dp&#91;i+1]&#91;l+1];\r\n\t\t\t\ta1=i+1;\r\n\t\t\t\tb1=l+1;\r\n\t\t\t}\r\n\t\t}\t\r\n\t}\r\n\twhile(a1>0&amp;&amp;b1>0){\r\n\t\tif(a&#91;a1-1]==b&#91;b1-1]){\r\n\t\t\tans=a&#91;a1-1]+ans;\r\n\t\t\ta1-=1;\r\n\t\t\tb1-=1;\r\n\t\t}\r\n\t\telse{\r\n\t\t\tif(dp&#91;a1-1]&#91;b1]>dp&#91;a1]&#91;b1-1])\r\n\t\t\ta1-=1;\r\n\t\t\telse\r\n\t\t\tb1-=1;\r\n\t\t}\r\n\t}\r\n\tcout&lt;&lt;ans;\r\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","protected":false},"excerpt":{"rendered":"<p>T1 \u91c7\u836f \u592a\u5178\u4e86\u3002 \u5927\u5bb6\u95ed\u7740\u773c\u775b\u90fd\u80fd\u6572\u51fa\u6765\u3002\uff08\uff1f\uff09 T2 \u6700\u957f\u4e0a\u5347\u5b50\u5e8f\u5217 \u9898\u76ee\uff1a \u9006\u5411\u9632\u5fa1\u5bfc\u5f39\uff1f\uff09 T3 \u6700 [&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-110","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\/110","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=110"}],"version-history":[{"count":1,"href":"https:\/\/forelink.top\/index.php\/wp-json\/wp\/v2\/posts\/110\/revisions"}],"predecessor-version":[{"id":115,"href":"https:\/\/forelink.top\/index.php\/wp-json\/wp\/v2\/posts\/110\/revisions\/115"}],"wp:attachment":[{"href":"https:\/\/forelink.top\/index.php\/wp-json\/wp\/v2\/media?parent=110"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/forelink.top\/index.php\/wp-json\/wp\/v2\/categories?post=110"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/forelink.top\/index.php\/wp-json\/wp\/v2\/tags?post=110"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}