{"id":227,"date":"2024-06-26T22:20:22","date_gmt":"2024-06-26T14:20:22","guid":{"rendered":"http:\/\/www.heartwarming.online:8003\/?p=227"},"modified":"2024-06-26T22:24:59","modified_gmt":"2024-06-26T14:24:59","slug":"%e5%b9%b6%e6%9f%a5%e9%9b%86","status":"publish","type":"post","link":"https:\/\/blog.heartwarming.online\/index.php\/2024\/06\/26\/%e5%b9%b6%e6%9f%a5%e9%9b%86\/","title":{"rendered":"\u5e76\u67e5\u96c6"},"content":{"rendered":"\n<h2 class=\"wp-block-heading\">\u57fa\u672c\u539f\u7406\uff1a<\/h2>\n\n\n\n<p>\u5e76\u67e5\u96c6\u4e5f\u662f\u5229\u7528\u6811\u72b6\u6570\u7ec4\u6765\u8868\u793a\u6570\u636e\uff0c\u5e76\u67e5\u96c6\u4e3b\u8981\u5b9e\u73b0\u4e24\u5927\u529f\u80fd\uff0c\u7b2c\u4e00\u5b9e\u73b0\u5c06\u4e24\u4e2a\u96c6\u5408\u5408\u5e76\uff0c\u7b2c\u4e8c\u5c31\u662f\u8be2\u95ee\u4e24\u4e2a\u5143\u7d20\u662f\u5426\u5728\u4e00\u8d77\uff0c\u5e76\u67e5\u96c6\u80fd\u591f\u5b9e\u73b0\u8be2\u95ee\u7684\u5173\u952e\u5c31\u5728\u4e8e\uff0c\u5e76\u67e5\u96c6\u6bcf\u4e2a\u4f4d\u7f6e\u5b58\u50a8\u7684\u662f\u4e0a\u4e00\u4e2a\u5143\u7d20\u7684\u7f16\u53f7\uff0c\u4e5f\u5c31\u662f\u7236\u8282\u70b9\uff0c\u76f4\u5230\u5230\u8fbe\u6811\u6839\uff0c\u6811\u6839\u5c31\u662fp[x]=x\u7684\u70b9\uff0c\u5408\u5e76\u96c6\u5408\u64cd\u4f5c\u662f\u76f4\u63a5\u5c06\u4e00\u4e2a\u96c6\u5408\u7684\u6839\u8282\u70b9\u7684\u503c\u6539\u4e3a\u53e6\u4e00\u4e2a\u6839\u8282\u70b9\u7684\u7f16\u53f7\u3002<\/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-5-1024x537.png'><img class=\"lazyload lazyload-style-1\" src=\"data:image\/svg+xml;base64,PCEtLUFyZ29uTG9hZGluZy0tPgo8c3ZnIHdpZHRoPSIxIiBoZWlnaHQ9IjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgc3Ryb2tlPSIjZmZmZmZmMDAiPjxnPjwvZz4KPC9zdmc+\"  loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"537\" data-original=\"https:\/\/blog.heartwarming.online\/wp-content\/uploads\/2024\/06\/image-5-1024x537.png\" src=\"data:image\/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB\/AAffA0nNPuCLAAAAAElFTkSuQmCC\" alt=\"\" class=\"wp-image-228\"  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\u521d\u59cb\u5316\uff0c\u4f7f\u6bcf\u4e2a\u5143\u7d20\u7684p[x]\u4e2d\u7684\u503c\u90fd\u4e3a\u81ea\u8eab\u3002<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>for(int i=1;i&lt;=n;i++)<br>{<br> &nbsp;  p&#91;i]=i;<br>}<\/code><\/pre>\n\n\n\n<p>2\u3001find\u51fd\u6570\u7684\u5b9e\u73b0\uff0c\u9012\u5f52\u5bfb\u627e\u5143\u7d20\u6240\u5728\u96c6\u5408\u7684\u6839\u8282\u70b9<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>int find(int x)<br>{<br> &nbsp;  if(p&#91;x]!=x)<br> &nbsp;  p&#91;x]=find(p&#91;x]);<br> &nbsp;  else<br> &nbsp;  return p&#91;x];<br>}<\/code><\/pre>\n\n\n\n<p>3\u3001\u5b9e\u73b0\u67e5\u8be2\u64cd\u4f5c<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>cin&gt;&gt;a&gt;&gt;b;<br>if(find(a)==find(b))<br>cout&lt;&lt;\"Yes\";<br>else<br>cout&lt;&lt;\"No\";<\/code><\/pre>\n\n\n\n<p>4\u3001\u5b9e\u73b0\u5408\u5e76\u64cd\u4f5c<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>p&#91;find(a)]=find(b);<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">\u4ee3\u7801\u5b9e\u73b0<\/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 p&#91;N];<br>int n,m;<br>int find(int x)<br>{<br> &nbsp; &nbsp;if(p&#91;x]!=x)<br> &nbsp; &nbsp; &nbsp; &nbsp;p&#91;x]=find(p&#91;x]);<br> &nbsp; &nbsp;else<br> &nbsp; &nbsp; &nbsp; &nbsp;return p&#91;x];<br>}<br>int main()<br>{<br> &nbsp; &nbsp;cin&gt;&gt;n&gt;&gt;m;<br> &nbsp; &nbsp;for(int i=1;i&lt;=n;i++)<br> &nbsp;  {<br> &nbsp; &nbsp; &nbsp; &nbsp;p&#91;i]=i;<br> &nbsp;  }<br> &nbsp; &nbsp;while(m--)<br> &nbsp;  {<br> &nbsp; &nbsp; &nbsp; &nbsp;int a,b;<br> &nbsp; &nbsp; &nbsp; &nbsp;char op&#91;2];<br> &nbsp; &nbsp; &nbsp; &nbsp;scanf(\"%s%d%d\",op,&amp;a,&amp;b);<br> &nbsp; &nbsp; &nbsp; &nbsp;if(*op=='M')<br> &nbsp; &nbsp; &nbsp;  {<br> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;p&#91;find(a)]=find(b);<br> &nbsp; &nbsp; &nbsp;  }<br> &nbsp; &nbsp; &nbsp; &nbsp;else <br> &nbsp; &nbsp; &nbsp;  {<br> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;if(find(a)==find(b))<br> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;printf(\"Yes\");<br> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;else<br> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<br> &nbsp; &nbsp; &nbsp;  }<br> &nbsp;  }<br> &nbsp; &nbsp;return 0;<br>}<\/code><\/pre>\n","protected":false},"excerpt":{"rendered":"<p>\u57fa\u672c\u539f\u7406\uff1a \u5e76\u67e5\u96c6\u4e5f\u662f\u5229\u7528\u6811\u72b6\u6570\u7ec4\u6765\u8868\u793a\u6570\u636e\uff0c\u5e76\u67e5\u96c6\u4e3b\u8981\u5b9e\u73b0\u4e24\u5927\u529f\u80fd\uff0c\u7b2c\u4e00\u5b9e\u73b0\u5c06\u4e24\u4e2a\u96c6\u5408\u5408\u5e76\uff0c\u7b2c\u4e8c\u5c31\u662f\u8be2\u95ee\u4e24\u4e2a [&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":[31,30],"class_list":["post-227","post","type-post","status-publish","format-standard","hentry","category-blog","category-32","tag-31","tag-30"],"jetpack_sharing_enabled":true,"jetpack_featured_media_url":"","_links":{"self":[{"href":"https:\/\/blog.heartwarming.online\/index.php\/wp-json\/wp\/v2\/posts\/227","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=227"}],"version-history":[{"count":2,"href":"https:\/\/blog.heartwarming.online\/index.php\/wp-json\/wp\/v2\/posts\/227\/revisions"}],"predecessor-version":[{"id":231,"href":"https:\/\/blog.heartwarming.online\/index.php\/wp-json\/wp\/v2\/posts\/227\/revisions\/231"}],"wp:attachment":[{"href":"https:\/\/blog.heartwarming.online\/index.php\/wp-json\/wp\/v2\/media?parent=227"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/blog.heartwarming.online\/index.php\/wp-json\/wp\/v2\/categories?post=227"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/blog.heartwarming.online\/index.php\/wp-json\/wp\/v2\/tags?post=227"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}