{"id":255,"date":"2024-06-27T22:43:53","date_gmt":"2024-06-27T14:43:53","guid":{"rendered":"http:\/\/www.heartwarming.online:8003\/?p=255"},"modified":"2024-06-27T22:43:56","modified_gmt":"2024-06-27T14:43:56","slug":"%e6%95%b4%e6%95%b0%e9%ab%98%e7%b2%be%e5%ba%a6%e5%87%8f%e6%b3%95","status":"publish","type":"post","link":"https:\/\/blog.heartwarming.online\/index.php\/2024\/06\/27\/%e6%95%b4%e6%95%b0%e9%ab%98%e7%b2%be%e5%ba%a6%e5%87%8f%e6%b3%95\/","title":{"rendered":"\u6574\u6570\u9ad8\u7cbe\u5ea6\u51cf\u6cd5"},"content":{"rendered":"\n<h2 class=\"wp-block-heading\">\u57fa\u672c\u601d\u60f3\uff1a<\/h2>\n\n\n\n<p>\u628a\u9664\u6570\u4e0e\u88ab\u9664\u6570\u5b58\u50a8\u5728\u4e24\u4e2a\u6570\u7ec4\u6216\u662f\u5bb9\u5668\u5185\uff0c\u5728\u8fdb\u884c\u51cf\u6cd5\u524d\u8fdb\u884c\u5927\u5c0f\u5224\u65ad\uff0c\u5982\u679cA&gt;B,\u76f4\u63a5\u8fdb\u884c\u51cf\u6cd5\uff0c\u53cd\u4e4b\u4ea4\u6362A\uff0cB\uff0c\u5728\u6700\u540e\u8f93\u51fa\u7ed3\u679c\u524d\u52a0\u4e0a\u51cf\u53f7\u5373\u53ef\uff0c\u6700\u540e\u8fdb\u884c\u52a0\u51cf\u6cd5\u7684\u8fd0\u7b97\uff0c\u6700\u540e\u8f93\u51fa\u7ed3\u679c\u3002<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">\u5b9e\u73b0\u8fc7\u7a0b\uff1a<\/h2>\n\n\n\n<p>1\u3001\u5bf9\u9664\u6570\u4e0e\u88ab\u9664\u6570\u4ee5\u53ca\u7ed3\u679c\u8fdb\u884c\u9884\u5904\u7406\uff08\u4e5f\u5c31\u662f\u5b58\u5165\u5bb9\u5668\u5185\uff09\uff0c\u8f93\u51fa\u8bfb\u5165\u7b49\u6a21\u677f\u6846\u67b6\u3002<\/p>\n\n\n\n<p>2\u3001\u7528\u4e00\u4e2abool\u578b\u7684\u5224\u65adA\u662f\u5426\u5927\u4e8eB\u7684\u51fd\u6570\u8fdb\u884c\u5224\u65ad\uff0c\u7ed3\u679c\u4e3a\u771f\u5219\u8c03\u7528A-B\uff0c\u53cd\u4e4bB-A\uff08\u4f46\u6700\u540e\u7684\u7ed3\u679c\u8981\u52a0\u8d1f\u53f7\uff09\u3002<\/p>\n\n\n\n<p>3\u3001\u5b9e\u73b0\u51cf\u6cd5\u51fd\u6570\u3002<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">\u4ee3\u7801\u5b9e\u73b0\uff1a<\/h2>\n\n\n\n<p>1\u3001\u6846\u67b6\u5904\u7406\uff1a<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">string a,b;<br>cin&gt;&gt;a&gt;&gt;b;<br>vector&lt;int&gt; A,B,C;<br>for(int i=a.size()-1;i&gt;=0;i--)<br>{<br> &nbsp; &nbsp;A.push_back(a[i]-'0'); &nbsp; \/\/\u6613\u9519\u70b9\uff1a\u8bb0\u4f4f\u8981\u628a\u5b57\u7b26xii'n<br>}<br>for(int i=b.size();i&gt;=0;i--)<br>{<br> &nbsp; &nbsp;B.push_back(b[i]-'0');<br>}<br>if(cmp(A,B))<br> &nbsp; &nbsp;C=sub(A,B);<br>else<br>{<br> &nbsp; &nbsp;C=sub(B,A);<br> &nbsp; &nbsp;cout&lt;&lt;'-';<br>}<br>for(int i=C.size();i&gt;=0;i--)<br> &nbsp; &nbsp;cout&lt;&lt;C[i];<br>cout&lt;&lt;endl;<br>return 0;<\/pre>\n\n\n\n<p>2\u3001\u5224\u65adA\u662f\u5426\u5927\u4e8eB<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">bool cmp(vector&lt;int&gt;&amp;A,vector&lt;int&gt;&amp;B)<br>{<br> &nbsp; &nbsp; if(A.size()!=B.size())<br> &nbsp; &nbsp; return A.size()&gt;B.size();<br> &nbsp; &nbsp; for(int i=A.size()-1;i&gt;=0;i--)<br> &nbsp; &nbsp; {<br> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; if(A[i]!=B[i])<br> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; return A[i]&gt;B[i];<br> &nbsp; &nbsp; }<br> &nbsp; &nbsp; return true;<br>}<\/pre>\n\n\n\n<p>3\u3001\u51cf\u6cd5\u51fd\u6570\u7684\u5b9e\u73b0<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">vector &lt;int&gt;sub(vector&lt;int&gt;&amp;A,vector&lt;int&gt;&amp;B)<br>{<br> &nbsp; &nbsp;vector&lt;int&gt;C;<br> &nbsp; &nbsp;for(int i=0,t=0;i&lt;A.size();i++)<br> &nbsp;  {<br> &nbsp; &nbsp; &nbsp; &nbsp;t=A[i]-t;<br> &nbsp; &nbsp; &nbsp; &nbsp;if(i&lt;B.size())<br> &nbsp; &nbsp; &nbsp; &nbsp;t=t-B[i];<br> &nbsp; &nbsp; &nbsp; &nbsp;C.push_back((t+10)%10);<br> &nbsp; &nbsp; &nbsp; &nbsp;if(t&lt;0)<br> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;t=1;<br> &nbsp; &nbsp; &nbsp; &nbsp;else<br> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;t=0;<br> &nbsp;  }<br> &nbsp; &nbsp;while(C.size()&gt;1&amp;&amp;C.back()==0) &nbsp; &nbsp;\/\/\u524d\u5bfc\u96f6\u7684\u53bb\u9664<br> &nbsp; &nbsp; &nbsp; &nbsp;C.pop_back();<br> &nbsp; &nbsp;return <br> &nbsp; &nbsp;<br>}<\/pre>\n","protected":false},"excerpt":{"rendered":"<p>\u57fa\u672c\u601d\u60f3\uff1a \u628a\u9664\u6570\u4e0e\u88ab\u9664\u6570\u5b58\u50a8\u5728\u4e24\u4e2a\u6570\u7ec4\u6216\u662f\u5bb9\u5668\u5185\uff0c\u5728\u8fdb\u884c\u51cf\u6cd5\u524d\u8fdb\u884c\u5927\u5c0f\u5224\u65ad\uff0c\u5982\u679cA&gt;B,\u76f4\u63a5\u8fdb\u884c\u51cf\u6cd5\uff0c [&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":[30],"class_list":["post-255","post","type-post","status-publish","format-standard","hentry","category-blog","category-32","tag-30"],"jetpack_sharing_enabled":true,"jetpack_featured_media_url":"","_links":{"self":[{"href":"https:\/\/blog.heartwarming.online\/index.php\/wp-json\/wp\/v2\/posts\/255","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=255"}],"version-history":[{"count":1,"href":"https:\/\/blog.heartwarming.online\/index.php\/wp-json\/wp\/v2\/posts\/255\/revisions"}],"predecessor-version":[{"id":256,"href":"https:\/\/blog.heartwarming.online\/index.php\/wp-json\/wp\/v2\/posts\/255\/revisions\/256"}],"wp:attachment":[{"href":"https:\/\/blog.heartwarming.online\/index.php\/wp-json\/wp\/v2\/media?parent=255"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/blog.heartwarming.online\/index.php\/wp-json\/wp\/v2\/categories?post=255"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/blog.heartwarming.online\/index.php\/wp-json\/wp\/v2\/tags?post=255"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}