{"id":528,"date":"2025-05-10T16:47:51","date_gmt":"2025-05-10T08:47:51","guid":{"rendered":"https:\/\/www.vcoco.top\/?p=528"},"modified":"2025-05-10T16:47:51","modified_gmt":"2025-05-10T08:47:51","slug":"%e4%b8%80%e4%ba%9b%e6%af%94%e8%be%83%e9%87%8d%e8%a6%81%e7%9a%84%e8%bf%9b%e9%98%b6%e7%ae%97%e6%b3%95","status":"publish","type":"post","link":"https:\/\/www.vcoco.top\/index.php\/2025\/05\/10\/%e4%b8%80%e4%ba%9b%e6%af%94%e8%be%83%e9%87%8d%e8%a6%81%e7%9a%84%e8%bf%9b%e9%98%b6%e7%ae%97%e6%b3%95\/","title":{"rendered":"\u4e00\u4e9b\u6bd4\u8f83\u91cd\u8981\u7684\u8fdb\u9636\u7b97\u6cd5"},"content":{"rendered":"\n<h2 class=\"wp-block-heading\">\u6811\u72b6\u6570\u7ec4<\/h2>\n\n\n\n<p>\u53c2\u8003\u7406\u89e3\u94fe\u63a5\uff1a<a href=\"https:\/\/www.acwing.com\/file_system\/file\/content\/whole\/index\/content\/551838\/\" target=\"_blank\" rel=\"noreferrer noopener\">https:\/\/www.acwing.com\/file_system\/file\/content\/whole\/index\/content\/551838\/<\/a><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>int lowbit(int x)\n{\n    return x&amp;-x;\n}\n\nint ask(int k) \/\/\u533a\u95f4\u67e5\u8be2\n{\n    int res=0;\n    for(int i=k;i;i-=lowbit(i))\n        res+=c&#91;i];\n    return res;\n}\n\nvoid add(int k,int num) \/\/ \u5355\u70b9\u4fee\u6539\n{\n    for(int i=k;i&lt;=n;i+=lowbit(i))\n        c&#91;i]+=num;\n}<\/code><\/pre>\n\n\n\n<p>\u53ef\u4ee5\u7528\u524d\u7f00\u548c\u5dee\u5206\u7684\u601d\u60f3\u6539\u4e3a\u533a\u95f4\u4fee\u6539\u548c\u5355\u70b9\u67e5\u8be2<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">\u7ebf\u6bb5\u6811<\/h2>\n\n\n\n<p>1. \u7b80\u5355\u7248\u672c \uff08\u65e0pushdown\uff0c\u61d2\u6807\u8bb0\uff09<\/p>\n\n\n\n<p>\u533a\u95f4\u67e5\u8be2\uff0c\u5355\u70b9\u4fee\u6539\u3002\u5c5e\u6027\uff1a\u533a\u95f4\u6700\u5927\u503c<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>struct Node\r\n{\r\n    int l, r;\r\n    int v;\r\n}tr&#91;N*4];\r\n\r\nvoid build(int u, int l, int r)\r\n{\r\n    tr&#91;u]={l, r};\r\n    if(l==r) return;\r\n    int mid=l+r>>1;\r\n    build(u&lt;&lt;1, l, mid), build(u&lt;&lt;1|1, mid+1, r);\r\n}\r\n\r\nvoid pushup(int u)\r\n{\r\n    tr&#91;u].v=max(tr&#91;u&lt;&lt;1].v, tr&#91;u&lt;&lt;1|1].v);\r\n}\r\n\r\nvoid modify(int u, int k, int t)\r\n{\r\n    if(tr&#91;u].l==k &amp;&amp; tr&#91;u].r==k) \r\n    {\r\n        tr&#91;u].v=t;\r\n        return;\r\n    }\r\n    int mid=tr&#91;u].l+tr&#91;u].r>>1;\r\n    if(k&lt;=mid) modify(u&lt;&lt;1, k, t);\r\n    else modify(u&lt;&lt;1|1, k, t);\r\n    pushup(u);\r\n}\r\n\r\n\r\nint query(int u, int l, int r)\r\n{\r\n    if(tr&#91;u].l>=l &amp;&amp; tr&#91;u].r&lt;=r) return tr&#91;u].v;\r\n    int mid=tr&#91;u].l+tr&#91;u].r>>1;\r\n    int res=0;\r\n    if(l&lt;=mid) res=query(u&lt;&lt;1, l, r);\r\n    if(r>mid) res=max(res, query(u&lt;&lt;1|1, l, r));\r\n    return res;\r\n}<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">LCA\u6700\u8fd1\u516c\u5171\u7956\u5148<\/h2>\n\n\n\n<p><\/p>\n\n\n\n<p><\/p>\n\n\n\n<h2 class=\"wp-block-heading\">\u6709\u5411\u56fe\u7684\u5f3a\u8fde\u901a\u5206\u91cf<\/h2>\n\n\n\n<p><\/p>\n\n\n\n<h2 class=\"wp-block-heading\">\u65e0\u5411\u56fe\u7684\u53cc\u8fde\u901a\u5206\u91cf<\/h2>\n\n\n\n<p><\/p>\n\n\n\n<h2 class=\"wp-block-heading\">\u6b27\u62c9\u56de\u8def<\/h2>\n\n\n\n<p><\/p>\n\n\n\n<h2 class=\"wp-block-heading\">\u6b27\u62c9\u8def\u5f84<\/h2>\n\n\n\n<p><\/p>\n","protected":false},"excerpt":{"rendered":"<p>\u6811\u72b6\u6570\u7ec4 \u53c2\u8003\u7406\u89e3\u94fe\u63a5\uff1ahttps:\/\/www.acwing.com\/file_system\/file\/con [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[90],"tags":[],"class_list":["post-528","post","type-post","status-publish","format-standard","hentry","category-advanced_algorithm"],"_links":{"self":[{"href":"https:\/\/www.vcoco.top\/index.php\/wp-json\/wp\/v2\/posts\/528","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.vcoco.top\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.vcoco.top\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.vcoco.top\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.vcoco.top\/index.php\/wp-json\/wp\/v2\/comments?post=528"}],"version-history":[{"count":1,"href":"https:\/\/www.vcoco.top\/index.php\/wp-json\/wp\/v2\/posts\/528\/revisions"}],"predecessor-version":[{"id":531,"href":"https:\/\/www.vcoco.top\/index.php\/wp-json\/wp\/v2\/posts\/528\/revisions\/531"}],"wp:attachment":[{"href":"https:\/\/www.vcoco.top\/index.php\/wp-json\/wp\/v2\/media?parent=528"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.vcoco.top\/index.php\/wp-json\/wp\/v2\/categories?post=528"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.vcoco.top\/index.php\/wp-json\/wp\/v2\/tags?post=528"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}