LCT經驗總結

来源:https://www.cnblogs.com/23forever/archive/2018/03/21/8619478.html
-Advertisement-
Play Games

~~媽媽,我終於會寫LCT了!~~ LCT太神奇了,它和Splay能完美結合。在$O(nlogn)$的時間內解決動態樹問題。 BZOJ2049 [Sdoi2008]Cave 洞穴勘測 丟板子,懶得解釋。用維護一下聯通塊就行了,因為數據水,並查集也可以水過。 AC代碼: c++ include inc ...


媽媽,我終於會寫LCT了!
LCT太神奇了,它和Splay能完美結合。在$O(nlogn)$的時間內解決動態樹問題。

BZOJ2049 [Sdoi2008]Cave 洞穴勘測

丟板子,懶得解釋。用維護一下聯通塊就行了,因為數據水,並查集也可以水過。

AC代碼:

#include <iostream>
#include <cstdio>
#define ls ch[0]
#define rs ch[1]
#define lson s[x].ls
#define rson s[x].rs
#define father s[x].fa
const int MAXN = 10000;
using namespace std;

inline int read() {
    int x = 0, w = 1; char c = ' ';
    while (c < '0' || c > '9') { c = getchar(); if (c == '-') w = -1; }
    while (c >= '0' && c <= '9') x = (x << 1) + (x << 3) + (c ^ 48), c = getchar();
    return x * w;
}

int n = read(), m = read();

class LCT {
    struct Node {
        int data, ch[2], fa;
        bool rev;
    } s[MAXN + 5];
    public :
        LCT() { top = 0; }//, for (int i = 1; i <= n; ++i) s[i].data = read(); }
        void PushDown(int x) {  
            if (s[x].rev) {
                s[lson].rev ^= 1, s[rson].rev ^= 1, swap(lson, rson);
                s[x].rev ^= 1;
            }
        }
        bool IsRoot(int x);
        void rotate(int x); void Splay(int x);
        void access(int x); void MakeRoot(int x); 
        void link(int x, int y); void cut(int x, int y);
        int find(int x);
    private :
        int top, ST[MAXN + 5];
} T;

bool LCT::IsRoot(int x) {
    return s[father].ls != x && s[father].rs != x; 
}

void LCT::rotate(int x) {
    int y = father, z = s[y].fa, l, r;
    if (s[y].ls == x) l = 0; else l = 1;
    r = l ^ 1;
    if (!IsRoot(y))
        if (s[z].ls == y) s[z].ls = x; else s[z].rs = x;
    father = z, s[y].fa = x, s[ s[x].ch[r] ].fa = y, s[y].ch[l] = s[x].ch[r], s[x].ch[r] = y; 
}

void LCT::Splay(int x) {
    top = 0, ST[++top] = x;
    for (int i = x; !IsRoot(i); i = s[i].fa) ST[++top] = s[i].fa;
    for (int i = top; i; --i) PushDown(ST[i]);
    while (!IsRoot(x)) {
        int y = father, z = s[y].fa;
        if (!IsRoot(y)) 
            if (s[y].ls == x ^ s[z].ls == y) rotate(x); else rotate(y); 
        rotate(x);
    }
}

void LCT::access(int x) {
    for (int last = 0; x; last = x, x = father) 
        Splay(x), rson = last;
}

void LCT::MakeRoot(int x) {
    access(x), Splay(x), s[x].rev ^= 1;
}

void LCT::link(int x, int y) {
    MakeRoot(x), father = y;
}

void LCT::cut(int x, int y) {
    MakeRoot(x), access(y), Splay(y); 
    if (s[y].ls == x) s[y].ls = father = 0;
}

int LCT::find(int x) {
    access(x), Splay(x);
    while (lson) x = lson;
    return x;
}

char c[20];

int main() {
    for (int i = 1; i <= m; ++i) {
        scanf ("%s", c); int u = read(), v = read();
        switch(c[0]) {
            case 'Q' : if (T.find(u) == T.find(v)) puts("Yes"); else puts("No"); break;
            case 'D' : T.cut(u, v); break;
            case 'C' : T.link(u, v); break;
        }
    }   
} 

BZOJ3282 Tree

順便吐槽一下,BZOJ太多題都叫Tree了。又是動態樹板子題。是不是動態樹都是板子題啊。用一個要上傳標記的Splay維護即可。

AC代碼:

#include <iostream>
#include <cstdio>
#define ls ch[0]
#define rs ch[1]
#define lson s[x].ls
#define rson s[x].rs
#define father s[x].fa
const int MAXN = 3e5;
using namespace std;
  
inline int read() {
    int x = 0, w = 1; char c = ' ';
    while (c < '0' || c > '9') { c = getchar(); if (c == '-') w = -1; }
    while (c >= '0' && c <= '9') x = (x << 1) + (x << 3) + (c ^ 48), c = getchar();
    return x * w;
}
  
int n = read(), m = read();
  
class LCT {
    struct Node {
        int data, ch[2], fa, val;
        bool rev;
    } s[MAXN + 5];
    public :
        LCT() { for (int i = 1; i <= n; ++i) s[i].data = read(); }
        void PushUp(int x) {
            s[x].val = s[lson].val ^ s[rson].val ^ s[x].data;
        }
        void PushDown(int x) {
            if (s[x].rev) {
                s[x].rev ^= 1, s[lson].rev ^= 1, s[rson].rev ^= 1;
                swap (lson, rson);
            }
        }
        bool IsRoot(int x);
        void rotate(int x); void Splay(int x);
        void MakeRoot(int x); void access(int x); 
        void link(int x, int y); void cut(int x, int y);
        int find(int x); void update(int x, int cnt); int query(int x, int y);
    private :
        int top, ST[MAXN + 5];
} T;
  
bool LCT::IsRoot(int x) {
    return s[father].ls != x && s[father].rs != x;
}
  
void LCT::rotate(int x) {
    int y = father, z = s[y].fa, l, r;
    if (s[y].ls == x) l = 0; else l = 1; 
    r = l ^ 1;
    if (!IsRoot(y))
        if (s[z].ls == y) s[z].ls = x; else s[z].rs = x;
    father = z, s[y].fa = x, s[ s[x].ch[r] ].fa = y, s[y].ch[l] = s[x].ch[r], s[x].ch[r] = y;
    PushUp(y), PushUp(x);
}
  
void LCT::Splay(int x) {
    top = 0, ST[++top] = x; 
    for (int i = x; !IsRoot(i); i = s[i].fa) ST[++top] = s[i].fa; 
    for (int i = top; i; --i) PushDown(ST[i]);
    while (!IsRoot(x)) {
        int y = father, z = s[y].fa;
        if (!IsRoot(y))
            if (s[y].ls == x ^ s[z].ls == y) rotate(x); else rotate(y);
        rotate(x);
    }
}
 
void LCT::access(int x) {
    for (int last = 0; x; last = x, x = father)
        Splay(x), rson = last, PushUp(x);
}
  
void LCT::MakeRoot(int x) {
    access(x), Splay(x), s[x].rev ^= 1;
} 
 
void LCT::link(int x, int y) {
    MakeRoot(x), father = y;
}
 
void LCT::cut(int x, int y) {
    MakeRoot(x), access(y), Splay(y);
    if (s[y].ls == x) s[y].ls = father = 0;
}
 
int LCT::find(int x) {
    access(x), Splay(x);
    while (lson) x = lson;
    return x;
}
 
void LCT::update(int x, int cnt) {
    access(x), Splay(x), s[x].data = cnt, PushUp(x);
}
 
int LCT::query(int x, int y) {
    MakeRoot(x), access(y), Splay(y);
    return s[y].val;
} 
 
int main( ) {
    for (int i = 1; i <= m; ++i) {
        int opt = read(), u = read(), v = read();
        switch (opt) {
            case 0 : printf("%d\n", T.query(u, v) ); break;
            case 1 : if (T.find(u) != T.find(v)) T.link(u, v); break;
            case 2 : if (T.find(u) == T.find(v)) T.cut(u, v); break;
            case 3 : T.update(u, v);
        }
    }
    return 0;
}

經驗總結

拒絕壓行,從我做起(大霧)。

有時間再填坑吧


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 描述 NKU ACM最近要舉行足球賽,作為此次賽事的負責人,Lee要對報名人員進行分隊。分隊要遵循如下原則: 一個人不能加入多支隊伍;不認識的人不能分在同一隊;如果a和b認識,b和c認識,那麼認為a和c也認識;每支隊伍上限8人,下限5人;儘量使隊伍滿員。由於參賽人數很多,Lee表示無能為力,所以請你 ...
  • HashMap是常用的Java集合之一,是基於哈希表的Map介面的實現。與HashTable主要區別為不支持同步和允許null作為key和value。HashMap非線程安全,即任一時刻可以有多個線程同時寫HashMap,可能會導致數據的不一致。 ...
  • 使用正則表達式,需要導入re這個模塊 r定義正則表達式的規則,這裡匹配abc這個字元串 元字元([])匹配一個範圍 ^:以...開頭,用在中括弧裡面表示非(取反,或者說排除) $:以....結尾 $在中括弧中被當做普通的字元串匹配 轉義字元 \ ...
  • 如下圖,可以這樣理解程式的執行過程: 1--在記憶體中開闢一塊空間,用來儲存創建的類對象,Tool(類名)指向著該類對象的記憶體地址; 該類對象裡面存儲有屬性num = 0(類屬性)和方法def __init__(); 2--程式往下走,"Tool("鐵鍬")"創建了一個對象(實例對象),在該實例對象中 ...
  • 內容:抽象、介面、多態 ######################################################################################################### 1、抽象 Abstract 方法抽象了,那麼類也得抽象抽象類不能 ...
  • 最近看到網上流傳著,各種面試經驗及面試題,往往都是一大堆技術題目貼上去,而沒有答案。 為此我業餘時間整理了Java多線程相關的53道常見面試題,及詳細答案,你可以用它來好好準備面試。望各路大牛,發現不對的地方,不吝賜教,留言即可。 1) 什麼是線程? 線程是操作系統能夠進行運算調度的最小單位,它被包 ...
  • 在平時開發SpringtMVC程式時,在Controller的方法上,通常會傳入如Map、HttpServletRequest類型的參數,並且可以方便地向裡面添加數據。同時,在Jsp中還可以直接使用request等對象方便地獲取出來。 如下麵2圖所示: 可問題是:@RequestMapping 方法 ...
  • 簡歷篇 請自我介紹 請介紹項目 基礎篇 基本功 面向對象的特征 final, finally, finalize 的區別 int 和 Integer 有什麼區別 重載和重寫的區別 抽象類和介面有什麼區別 說說反射的用途及實現 說說自定義註解的場景及實現 HTTP 請求的 GET 與 POST 方式的 ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...