From d04a8002b19739df47931e3e6f03777be7c0584f Mon Sep 17 00:00:00 2001 From: zzzyc <44026067+zzzyc@users.noreply.github.com> Date: Tue, 17 Oct 2023 18:27:11 +0800 Subject: [PATCH] fix --- 404.html | 14 +- about/index.html | 14 +- .../20230507_LeetCode-2023Spring/index.html | 963 ++++++++++++++++++ .../index.html" | 340 +++++++ algorithm/index.html | 70 +- algorithm/index.xml | 18 + .../index.html" | 14 +- .../index.html" | 14 +- .../index.html" | 14 +- .../index.html" | 14 +- .../index.html" | 14 +- .../index.html" | 14 +- .../index.html" | 14 +- archives/index.html | 18 +- categories/CS/index.html | 14 +- categories/index.html | 18 +- .../\345\267\245\345\205\267/index.html" | 14 +- .../\346\257\224\350\265\233/index.html" | 22 +- .../\346\257\224\350\265\233/index.xml" | 8 +- .../\347\256\227\346\263\225/index.html" | 14 +- .../\351\227\262\350\260\210/index.html" | 14 +- .../index.html" | 14 +- cs/index.html | 14 +- .../index.html" | 14 +- index.html | 22 +- index.xml | 8 +- page/2/index.html | 14 +- post/index.html | 14 +- .../index.html" | 14 +- .../index.html" | 14 +- problems/index.html | 14 +- research/conclusion/index.html | 14 +- research/conference/index.html | 14 +- research/index.html | 14 +- search/index.html | 14 +- sitemap.xml | 13 +- solution/index.html | 70 +- solution/index.xml | 19 - tags/DFS/index.html | 14 +- tags/LeetCode/index.html | 18 +- tags/LeetCode/index.xml | 4 +- tags/UTF-8/index.html | 14 +- tags/index.html | 16 +- .../index.html" | 14 +- .../index.html" | 14 +- .../index.html" | 14 +- "tags/\345\257\271\346\213\215/index.html" | 14 +- .../index.html" | 14 +- .../index.html" | 14 +- .../index.html" | 14 +- .../index.html" | 14 +- .../index.html" | 14 +- .../index.html" | 14 +- .../index.html" | 14 +- .../index.html" | 14 +- "tags/\346\234\200\350\277\221/index.html" | 14 +- .../index.html" | 14 +- .../index.html" | 14 +- .../index.html" | 14 +- .../index.html" | 14 +- .../index.html" | 14 +- temp/index.html | 14 +- .../index.html" | 14 +- tool/index.html | 14 +- .../index.html" | 14 +- 65 files changed, 1807 insertions(+), 506 deletions(-) create mode 100644 algorithm/20230507_LeetCode-2023Spring/index.html create mode 100644 "algorithm/SFX-2023\345\206\263\350\265\233/index.html" diff --git a/404.html b/404.html index 3b9d0a7..43c9a59 100644 --- a/404.html +++ b/404.html @@ -159,31 +159,31 @@

最近文章

  • - Unix常用命令 + SFX 2023决赛
  • - 无向图的双连通分量 + Unix常用命令
  • - 数据对拍器 + 无向图的双连通分量
  • - UTF-8编码介绍 + LeetCode 2023 春季杯团队赛
  • - 有向图的强连通分量 + 数据对拍器
  • - 二分图的相关性质 + UTF-8编码介绍
  • - 欧拉路径的DFS存储顺序 + 有向图的强连通分量
  • diff --git a/about/index.html b/about/index.html index 3c2f7e2..ac32e90 100644 --- a/about/index.html +++ b/about/index.html @@ -230,31 +230,31 @@

    最近文章

  • - Unix常用命令 + SFX 2023决赛
  • - 无向图的双连通分量 + Unix常用命令
  • - 数据对拍器 + 无向图的双连通分量
  • - UTF-8编码介绍 + LeetCode 2023 春季杯团队赛
  • - 有向图的强连通分量 + 数据对拍器
  • - 二分图的相关性质 + UTF-8编码介绍
  • - 欧拉路径的DFS存储顺序 + 有向图的强连通分量
  • diff --git a/algorithm/20230507_LeetCode-2023Spring/index.html b/algorithm/20230507_LeetCode-2023Spring/index.html new file mode 100644 index 0000000..89e2bba --- /dev/null +++ b/algorithm/20230507_LeetCode-2023Spring/index.html @@ -0,0 +1,963 @@ + + + + + + + + + + + + LeetCode 2023 春季杯团队赛 | solego's blog + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    + +
    + +
    + +
    +
    +

    LeetCode 2023 春季杯团队赛

    +
    + + + + + + + + + + + +
    +

    A. 符文储备

    +

    题意:

    +

    给定一个数组,问可以从中选择最多多少个连续的数,使得这些数排序后,相邻两个数的差最多是 1。

    +

    数据范围:

    +
      +
    • 1 <= runes.length <= 10^4
    • +
    • 0 <= runes[i] <= 10^4
    • +
    +

    题解:

    +

    值域范围很小,可以直接开一个大小为 10001 的数组,然后统计每个数出现的次数,最后遍历这个数组判断即可。

    +

    如果值域范围很大,可以开一个 map 来统计,然后遍历 map 判断即可。

    +

    代码:

    +
    + +
    +
     1
    + 2
    + 3
    + 4
    + 5
    + 6
    + 7
    + 8
    + 9
    +10
    +11
    +12
    +13
    +14
    +15
    +16
    +17
    +18
    +19
    +20
    +21
    +22
    +23
    +
    +
    class Solution {
    +public:
    +    int runeReserve(vector<int>& runes) {
    +        const int MAXN = 10010;
    +        vector<int> cnt(MAXN, 0);
    +        
    +        for (auto u: runes) cnt[u] += 1;
    +        
    +        int ans = 1;
    +        int res = 0;
    +        for (int i = 0; i < MAXN; ++i) {
    +            if (cnt[i] == 0) {
    +                res = 0;
    +                continue ;
    +            }
    +            
    +            res += cnt[i];
    +            ans = max(ans, res);
    +        }
    +        
    +        return ans;
    +    }
    +};
    +
    +
    +

    B. 城墙防线

    +

    题意:

    +

    给定一些城墙的区间,按照递增顺序给出,任意两个城墙区间不相交。

    +

    现在统一给所有城墙膨胀,每个城墙膨胀数量一样,可以向左向右膨胀,问每个城墙膨胀的最大数量。

    +

    数据范围:

    +
      +
    • 3 <= rampart.length <= 10^4
    • +
    • rampart[i].length == 2
    • +
    • 0 <= rampart[i][0] < rampart[i][1] <= rampart[i+1][0] <= 10^8
    • +
    +

    题意:

    +

    对于最左和最右边的城墙,其可以无限扩张,所以他们不被考虑在内。

    +

    考虑有 3 个城墙,对于 2 号城墙,可以将 1 号 到 2 号和 2 号到 3 号中间这部分城墙全部作为其膨胀得到的城墙。

    +

    考虑有 4 个城墙,对于 2 号城墙,可以将 1 号 到 2 号城墙中的部分作为其膨胀的部分,而 2 号和 3号中间这部分,就不好界定了。

    +

    考虑二分答案,每个城墙可以膨胀的数量,枚举到第 i 个城墙时,其左边还未被膨胀的部分都可以作为其膨胀的部分,然后再从其右边的部分膨胀其需要的值即可。

    +

    代码:

    +
    + +
    +
     1
    + 2
    + 3
    + 4
    + 5
    + 6
    + 7
    + 8
    + 9
    +10
    +11
    +12
    +13
    +14
    +15
    +16
    +17
    +18
    +19
    +20
    +21
    +22
    +23
    +24
    +25
    +26
    +27
    +28
    +29
    +
    +
    class Solution {
    +public:
    +    int rampartDefensiveLine(vector<vector<int>>& vec) {
    +        int l = 0, r = 100000000;
    +        int n = vec.size();
    +        auto check = [&](int mid) {
    +            // 对于每一个,先看其左边可以提供的,左边如果提供足够了,就不考虑右边了,否则看右边提供多少个
    +            int used = 0;
    +            for (int i = 1; i + 1 < n; ++i) {
    +                int left = vec[i][0] - vec[i - 1][1] - used;
    +                if (left < mid) {
    +                    int need = mid - left;
    +                    if (vec[i + 1][0] - vec[i][1] >= need) used = need;
    +                    else return false;
    +                } else {
    +                    used = 0;
    +                }
    +            }
    +            return true;
    +        };
    +        
    +        while (l < r) {
    +            int mid = l + r + 1 >> 1;
    +            if (check(mid)) l = mid;
    +            else r = mid - 1;
    +        }
    +        return l;
    +    }
    +};
    +
    +
    +

    C. 提取咒文

    +

    题意:

    +

    给定一个长度为 len 的字符串 mantra 和一个 n * m 的矩阵 matrix, +字符串中的字符和矩阵中的元素均为小写字母,初始在 [0, 0] ,按照字符串的顺序依次走到矩阵中的每个位置,问最少需要走多少次可以走完。

    +

    数据范围:

    +
      +
    • 0 < matrix.length, matrix[i].length <= 100
    • +
    • 0 < mantra.length <= 100
    • +
    • matrixmantra 仅由小写字母组成
    • +
    +

    题解:

    +

    这题赛时被 dp 卡住了,后面才反应过来是三维 bfs。 +每次移动和取数都会增加一次操作,移动会修改 x 或者 y,取数会修改 k。 +从 (0, 0, 0) 开始 bfs ,当前位置的字符 matrix[x][y]mantra[k] 相等,则说明可以取数。每次可以向上下左右移动 4 次。

    +

    每个(x, y, k) 扩展最多 5 次,时间复杂度是 $O(n\times m\times len)$。

    +

    代码:

    +
    + +
    +
     1
    + 2
    + 3
    + 4
    + 5
    + 6
    + 7
    + 8
    + 9
    +10
    +11
    +12
    +13
    +14
    +15
    +16
    +17
    +18
    +19
    +20
    +21
    +22
    +23
    +24
    +25
    +26
    +27
    +28
    +29
    +30
    +31
    +32
    +33
    +34
    +35
    +36
    +37
    +38
    +39
    +40
    +41
    +42
    +43
    +44
    +45
    +
    +
    const int INF = 0x3f3f3f3f;
    +int dist[105][105][105];
    +int dx[4] = {-1, 0, 1, 0};
    +int dy[4] = {0, 1, 0, -1};
    +
    +class Solution {
    +public:
    +    int extractMantra(vector<string>& matrix, string mantra) {
    +        int n = matrix.size(), m = matrix[0].size(), len = mantra.size();
    +        for (int i = 0; i < n; ++i)
    +            for (int j = 0; j < m; ++j)
    +                for (int k = 0; k <= len; ++k)
    +                    dist[i][j][k] = INF;
    +        
    +        dist[0][0][0] = 0;
    +        queue<tuple<int, int, int>> q;
    +        q.emplace(0, 0, 0);
    +        
    +        int ans = INF;
    +        while (!q.empty()) {
    +            auto [x, y, k] = q.front(); q.pop();
    +            if (k == len) {
    +                ans = min(ans, dist[x][y][k]);
    +                continue ;
    +            }
    +            
    +            if (matrix[x][y] == mantra[k]) {
    +                if (dist[x][y][k + 1] > dist[x][y][k] + 1) {
    +                    dist[x][y][k + 1] = dist[x][y][k] + 1;
    +                    q.emplace(x, y, k + 1);
    +                }
    +            }
    +            
    +            for (int i = 0; i < 4; ++i) {
    +                int nx = x + dx[i], ny = y + dy[i];
    +                if (nx >= 0 && nx < n && ny >= 0 && ny < m && dist[nx][ny][k] > dist[x][y][k] + 1) {
    +                    dist[nx][ny][k] = dist[x][y][k] + 1;
    +                    q.emplace(nx, ny, k);
    +                }
    +            }
    +        }
    +        
    +        return ans == INF ? -1 : ans;
    +    }
    +};
    +
    +
    +

    D. 生物进化录

    +

    题意:

    +

    给定一棵树,从根开始,构造这棵树的生成方式,用 0 表示父节点生成一个子节点,用 1 表示从子节点回到父节点,用 0 和 1 表示生成方式,求所有生成方式的最小字典序,注意,生成完树中所有节点后,不用回到根节点。

    +
      +
    • 1 <= parents.length <= 10^4
    • +
    • -1 <= parents[i] < i (即父节点编号小于子节点)
    • +
    +

    题解:

    +

    一个直观的生成方式,dfs 得到每棵子树的最小字典序生成方式,然后按照字典序排序输出。复杂度是正确的,但是不会证明。

    +

    首先每个子树会被 sort 一次,即除了根外都会 sort 一次,总共 sort 的元素数是 $O(n)$,但是内部的字符串长度是不定的,但是注意,sort 中两个字符串比较取决于较小的长度,即完全 k 叉树的情况会得到最大的 sort 复杂度,如此以完全二叉树为例,$2^{14}=16384$,同时深度最大时,比较最小,最多比较 14 层。故粗略的估计复杂度为 $O(n\log n\times 14)$。

    +

    代码:

    +
    + +
    +
     1
    + 2
    + 3
    + 4
    + 5
    + 6
    + 7
    + 8
    + 9
    +10
    +11
    +12
    +13
    +14
    +15
    +16
    +17
    +18
    +19
    +20
    +21
    +22
    +23
    +24
    +25
    +26
    +27
    +28
    +29
    +30
    +
    +
    class Solution {
    +public:
    +
    +    string dfs(int u, vector<vector<int>>& g) {
    +        vector<string> vec;
    +        for (int v: g[u]) {
    +            vec.emplace_back(dfs(v, g) + "1");
    +        }
    +        sort(vec.begin(), vec.end());
    +        string res;
    +        for (auto& s: vec) {
    +            res += "0" + s;
    +        }
    +        return res;
    +    }
    +
    +    string evolutionaryRecord(vector<int>& parents) {
    +        if (parents.size() == 1) return "";
    +
    +        int n = parents.size();
    +        vector<vector<int>> g(n);
    +
    +        for (int i = 1; i < n; ++i) {
    +            g[parents[i]].push_back(i);
    +        }
    +        string ans = dfs(0, g);
    +        while (!ans.empty() && ans.back() == '1') ans.pop_back();
    +        return ans;
    +    }
    +};
    +
    +
    +

    E. 与非的谜题

    +

    题意:

    +

    给定一个长度为 n 的数组 arr,以及k 个操作,第 i 个操作 operations[i] = [type, x, y],每个操作有两种类型:

    +
      +
    • type = 0,表示修改操作,arr[x] = y
    • +
    • type = 1,表示运算操作,将 y 进行 x * n 次与非操作,第 i 次与非运算为:y = y NAND arr[i % n]
    • +
    +

    最后将所有运算操作的 y 的异或值返回。

    +

    数据范围:

    +
      +
    • 1 <= arr.length, operations.length <= 10^4
    • +
    • 1 <= k <= 30
    • +
    • 0 <= arr[i] <= 2^k
    • +
    • type = 00 <= x < arr.length0 <= y < 2^k
    • +
    • type = 11 <= x < 10^90 <= y < 2^k
    • +
    • 保证存在 type = 1 的操作
    • +
    +

    题解:

    +

    对于位运算的题,位之间是独立的,考虑拆位,即单独考虑每一位。

    +

    对于两个位之间的与非操作,有四种情况:

    +
      +
    • !(1 & 1) = 0
    • +
    • !(1 & 0) = 1
    • +
    • !(0 & 1) = 1
    • +
    • !(0 & 0) = 1
    • +
    +

    可以发现,当任意一个位为 0 ,答案为 1,那么对于查询操作,最后一个 0 操作后,位变成 1,只需要考虑最后一个 0 的位置。

    +

    对于连续的 1 ,上述考虑 1 的变换,!(x & 0) => !x,即取反,那么只需要考虑连续 1 的个数为奇数还是偶数即可。

    +

    因此,我们的任务转换为了求每一位的最后一个 0 的位置,但是注意,我们还会修改值,因此需要一个快速删除和查询极值的数据结构,线段树或者set都可以。

    +

    代码:

    +

    set 实现

    +
    + +
    +
     1
    + 2
    + 3
    + 4
    + 5
    + 6
    + 7
    + 8
    + 9
    +10
    +11
    +12
    +13
    +14
    +15
    +16
    +17
    +18
    +19
    +20
    +21
    +22
    +23
    +24
    +25
    +26
    +27
    +28
    +29
    +30
    +31
    +32
    +33
    +34
    +35
    +36
    +37
    +38
    +39
    +40
    +41
    +42
    +43
    +44
    +45
    +46
    +47
    +48
    +49
    +50
    +
    +
    // set
    +class Solution {
    +public:
    +    int getNandResult(int k, vector<int>& arr, vector<vector<int>>& operations) {
    +        int n = arr.size();
    +        
    +        vector<set<int>> vec(k);
    +        for (int i = 0; i < arr.size(); ++i) {
    +            for (int j = 0; j < k; ++j) {
    +                if (arr[i] >> j & 1) continue ;
    +                vec[j].insert(i);
    +            }
    +        }
    +        
    +        int ans = 0;
    +        for (auto& op: operations) {
    +            int type = op[0], x = op[1], y = op[2];
    +            if (type == 0) {
    +                for (int j = 0; j < k; ++j) {
    +                    if ((arr[x] >> j & 1) == (y >> j & 1)) continue ;
    +                    if (!(y >> j & 1)) vec[j].insert(x);
    +                    else vec[j].erase(x);
    +                }
    +                arr[x] = y;
    +            } else {
    +                int res = 0;
    +                for (int j = 0; j < k; ++j) {
    +                    int start = y >> j & 1;
    +                    int odd = 1;
    +                    if (vec[j].empty()) {
    +                        if (x % 2 == 0 || n % 2 == 0) {
    +                            odd = 0;
    +                        }
    +                    } else {
    +                        start = 1;
    +                        
    +                        int last = n - 1 - *(vec[j].rbegin());
    +                        if (last % 2 == 0) {
    +                            odd = 0;
    +                        }
    +                    }
    +                    if (odd) start ^= 1;
    +                    if (start) res |= 1 << j;
    +                }
    +                ans ^= res;
    +            }
    +        }
    +        return ans;
    +    }
    +};
    +
    +
    +

    线段树实现:

    +
    + +
    +
     1
    + 2
    + 3
    + 4
    + 5
    + 6
    + 7
    + 8
    + 9
    +10
    +11
    +12
    +13
    +14
    +15
    +16
    +17
    +18
    +19
    +20
    +21
    +22
    +23
    +24
    +25
    +26
    +27
    +28
    +29
    +30
    +31
    +32
    +33
    +34
    +35
    +36
    +37
    +38
    +39
    +40
    +41
    +42
    +43
    +44
    +45
    +46
    +47
    +48
    +49
    +50
    +51
    +52
    +53
    +54
    +55
    +56
    +57
    +58
    +59
    +60
    +61
    +62
    +63
    +64
    +65
    +66
    +67
    +68
    +69
    +70
    +71
    +72
    +73
    +74
    +75
    +76
    +77
    +78
    +79
    +
    +
    // 线段树
    +const int N = 10010;
    +struct Node {
    +    int l, r, p;
    +}tr[30][N << 2];
    +
    +vector<int> a;
    +int n;
    +
    +void pushup(Node tr[], int u) {
    +    tr[u].p = max(tr[u << 1].p, tr[u << 1 | 1].p);
    +}
    +
    +void build(Node tr[], int k, int u, int l, int r) {
    +    tr[u] = {l, r};
    +    if (l == r) {
    +        if (a[l] >> k & 1) tr[u].p = -1;
    +        else tr[u].p = l;
    +        return ;
    +    }
    +    int mid = (l + r) >> 1;
    +    build(tr, k, u << 1, l, mid);
    +    build(tr, k, u << 1 | 1, mid + 1, r);
    +
    +    pushup(tr, u);
    +}
    +
    +void modify(Node tr[], int k, int u, int x, int y) {
    +    if (tr[u].l == tr[u].r) {
    +        a[x] = y;
    +        if (a[x] >> k & 1) tr[u].p = -1;
    +        else tr[u].p = x;
    +        return ;
    +    }
    +
    +    int mid = (tr[u].l + tr[u].r) >> 1;
    +    if (x <= mid) modify(tr, k, u << 1, x, y);
    +    else modify(tr, k, u << 1 | 1, x, y);
    +    pushup(tr, u);
    +}
    +
    +class Solution {
    +public:
    +
    +    int getNandResult(int k, vector<int>& arr, vector<vector<int>>& operations) {
    +        a = arr;
    +        n = a.size();
    +        for (int i = 0; i < k; ++i) build(tr[i], i, 1, 0, n - 1);
    +
    +        int ans = 0;
    +        for (auto& u: operations) {
    +            int type = u[0], x = u[1], y = u[2];
    +            if (type == 0) {
    +                for (int i = 0; i < k; ++i) modify(tr[i], i, 1, x, y);
    +            } else {
    +                int res = 0;
    +                for (int i = 0; i < k; ++i) {
    +                    int last = tr[i][1].p;
    +                    int start = y >> i & 1;
    +                    int odd = 1;
    +                    if (last == -1) {
    +                        if (x % 2 == 0 || n % 2 == 0) {
    +                            odd = 0;
    +                        }
    +                    } else {
    +                        start = 1;
    +                        if ((n - 1 - last) % 2 == 0) {
    +                            odd = 0;
    +                        }
    +                    }
    +                    if (odd) start ^= 1;
    +                    if (start) res |= 1 << i;
    +                }
    +                ans ^= res;
    +            }
    +        }
    +        return ans;
    +    }
    +};
    +
    +
    +

    F. 万灵之树

    +

    鸽了

    + +
    + + + + + + + + +
    + + + + + + + + +
    + + + + + + + + + + + + + + + + + + +
    + + +
    +
    +
    + + + \ No newline at end of file diff --git "a/algorithm/SFX-2023\345\206\263\350\265\233/index.html" "b/algorithm/SFX-2023\345\206\263\350\265\233/index.html" new file mode 100644 index 0000000..c5e8399 --- /dev/null +++ "b/algorithm/SFX-2023\345\206\263\350\265\233/index.html" @@ -0,0 +1,340 @@ + + + + + + + + + + + + SFX 2023决赛 | solego's blog + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    + +
    + +
    + +
    +
    +

    SFX 2023决赛

    +
    + + + + + + + + + + + +
    +

    A. 重组偶数

    +

    有点恶心的构造题,边界条件很多

    +

    Code by solego

    +

    B. 顺丰小哥取货

    +

    不是很会的dp,上限是 $4.8\times 10^7$,这方面需要补补

    +

    Code by jiangly

    +

    C. 顺丰物流管理系统

    +

    纯工程模拟题

    +

    Code by solego

    +

    D. 顺丰小哥送货

    +

    通过求和问题推导想出来的。异或拆位,就可以转换为求和问题

    +

    Code by solego

    +

    E. 运货管理系统

    +

    BFS+模拟题,输出细节很多

    +

    Code by solego

    +

    F. 区间异或和

    +

    仍然是异或拆位问题,这题属于是难度估计过高,实际很简单,赛后也自己写了出来

    +

    Code by solego

    + +
    + + + + + + + + +
    + + + + + + + + +
    + + + + + + + + + + + + + + + + + + +
    + + +
    +
    +
    + + + \ No newline at end of file diff --git a/algorithm/index.html b/algorithm/index.html index 245c6e6..0de50bc 100644 --- a/algorithm/index.html +++ b/algorithm/index.html @@ -137,6 +137,34 @@

    +
    +
    +

    + SFX 2023决赛 +

    +
    + + + + + + + +
    + SFX 2023决赛 20230610…… +
    +

    阅读全文

    +
    + + +

    @@ -165,6 +193,34 @@

    + + + +

    @@ -343,31 +399,31 @@

    最近文章

  • - Unix常用命令 + SFX 2023决赛
  • - 无向图的双连通分量 + Unix常用命令
  • - 数据对拍器 + 无向图的双连通分量
  • - UTF-8编码介绍 + LeetCode 2023 春季杯团队赛
  • - 有向图的强连通分量 + 数据对拍器
  • - 二分图的相关性质 + UTF-8编码介绍
  • - 欧拉路径的DFS存储顺序 + 有向图的强连通分量
  • diff --git a/algorithm/index.xml b/algorithm/index.xml index f1229db..f1d9403 100644 --- a/algorithm/index.xml +++ b/algorithm/index.xml @@ -29,6 +29,15 @@ 子集枚举 + + SFX 2023决赛 + https://zzzyc.github.io/algorithm/SFX-2023%E5%86%B3%E8%B5%9B/ + Sun, 11 Jun 2023 11:27:56 +0800 + + https://zzzyc.github.io/algorithm/SFX-2023%E5%86%B3%E8%B5%9B/ + SFX 2023决赛 20230610 + + 无向图的双连通分量 https://zzzyc.github.io/algorithm/%E6%97%A0%E5%90%91%E5%9B%BE%E7%9A%84%E5%8F%8C%E8%BF%9E%E9%80%9A%E5%88%86%E9%87%8F/ @@ -38,6 +47,15 @@ 无向图的双连通分量 + + LeetCode 2023 春季杯团队赛 + https://zzzyc.github.io/algorithm/20230507_LeetCode-2023Spring/ + Sun, 07 May 2023 17:24:48 +0800 + + https://zzzyc.github.io/algorithm/20230507_LeetCode-2023Spring/ + LeetCode 2023 春季杯团队赛题解 + + 有向图的强连通分量 https://zzzyc.github.io/algorithm/%E6%9C%89%E5%90%91%E5%9B%BE%E7%9A%84%E5%BC%BA%E8%BF%9E%E9%80%9A%E5%88%86%E9%87%8F/ diff --git "a/algorithm/kuangbin\344\270\223\351\242\2307-\347\272\277\346\256\265\346\240\221/index.html" "b/algorithm/kuangbin\344\270\223\351\242\2307-\347\272\277\346\256\265\346\240\221/index.html" index 5cda3da..27fb4f1 100644 --- "a/algorithm/kuangbin\344\270\223\351\242\2307-\347\272\277\346\256\265\346\240\221/index.html" +++ "b/algorithm/kuangbin\344\270\223\351\242\2307-\347\272\277\346\256\265\346\240\221/index.html" @@ -245,31 +245,31 @@

    最近文章

  • - Unix常用命令 + SFX 2023决赛
  • - 无向图的双连通分量 + Unix常用命令
  • - 数据对拍器 + 无向图的双连通分量
  • - UTF-8编码介绍 + LeetCode 2023 春季杯团队赛
  • - 有向图的强连通分量 + 数据对拍器
  • - 二分图的相关性质 + UTF-8编码介绍
  • - 欧拉路径的DFS存储顺序 + 有向图的强连通分量
  • diff --git "a/algorithm/\344\272\214\345\210\206\345\233\276\347\232\204\347\233\270\345\205\263\346\200\247\350\264\250/index.html" "b/algorithm/\344\272\214\345\210\206\345\233\276\347\232\204\347\233\270\345\205\263\346\200\247\350\264\250/index.html" index e721936..443ef0a 100644 --- "a/algorithm/\344\272\214\345\210\206\345\233\276\347\232\204\347\233\270\345\205\263\346\200\247\350\264\250/index.html" +++ "b/algorithm/\344\272\214\345\210\206\345\233\276\347\232\204\347\233\270\345\205\263\346\200\247\350\264\250/index.html" @@ -534,31 +534,31 @@

    最近文章

  • - Unix常用命令 + SFX 2023决赛
  • - 无向图的双连通分量 + Unix常用命令
  • - 数据对拍器 + 无向图的双连通分量
  • - UTF-8编码介绍 + LeetCode 2023 春季杯团队赛
  • - 有向图的强连通分量 + 数据对拍器
  • - 二分图的相关性质 + UTF-8编码介绍
  • - 欧拉路径的DFS存储顺序 + 有向图的强连通分量
  • diff --git "a/algorithm/\345\255\220\351\233\206\346\236\232\344\270\276/index.html" "b/algorithm/\345\255\220\351\233\206\346\236\232\344\270\276/index.html" index 1b2562b..2536a96 100644 --- "a/algorithm/\345\255\220\351\233\206\346\236\232\344\270\276/index.html" +++ "b/algorithm/\345\255\220\351\233\206\346\236\232\344\270\276/index.html" @@ -294,31 +294,31 @@

    最近文章

  • - Unix常用命令 + SFX 2023决赛
  • - 无向图的双连通分量 + Unix常用命令
  • - 数据对拍器 + 无向图的双连通分量
  • - UTF-8编码介绍 + LeetCode 2023 春季杯团队赛
  • - 有向图的强连通分量 + 数据对拍器
  • - 二分图的相关性质 + UTF-8编码介绍
  • - 欧拉路径的DFS存储顺序 + 有向图的强连通分量
  • diff --git "a/algorithm/\346\227\240\345\220\221\345\233\276\347\232\204\345\217\214\350\277\236\351\200\232\345\210\206\351\207\217/index.html" "b/algorithm/\346\227\240\345\220\221\345\233\276\347\232\204\345\217\214\350\277\236\351\200\232\345\210\206\351\207\217/index.html" index bd3766a..5961ca1 100644 --- "a/algorithm/\346\227\240\345\220\221\345\233\276\347\232\204\345\217\214\350\277\236\351\200\232\345\210\206\351\207\217/index.html" +++ "b/algorithm/\346\227\240\345\220\221\345\233\276\347\232\204\345\217\214\350\277\236\351\200\232\345\210\206\351\207\217/index.html" @@ -690,31 +690,31 @@

    最近文章

  • - Unix常用命令 + SFX 2023决赛
  • - 无向图的双连通分量 + Unix常用命令
  • - 数据对拍器 + 无向图的双连通分量
  • - UTF-8编码介绍 + LeetCode 2023 春季杯团队赛
  • - 有向图的强连通分量 + 数据对拍器
  • - 二分图的相关性质 + UTF-8编码介绍
  • - 欧拉路径的DFS存储顺序 + 有向图的强连通分量
  • diff --git "a/algorithm/\346\234\211\345\220\221\345\233\276\347\232\204\345\274\272\350\277\236\351\200\232\345\210\206\351\207\217/index.html" "b/algorithm/\346\234\211\345\220\221\345\233\276\347\232\204\345\274\272\350\277\236\351\200\232\345\210\206\351\207\217/index.html" index a4daceb..9ee3a25 100644 --- "a/algorithm/\346\234\211\345\220\221\345\233\276\347\232\204\345\274\272\350\277\236\351\200\232\345\210\206\351\207\217/index.html" +++ "b/algorithm/\346\234\211\345\220\221\345\233\276\347\232\204\345\274\272\350\277\236\351\200\232\345\210\206\351\207\217/index.html" @@ -355,31 +355,31 @@

    最近文章

  • - Unix常用命令 + SFX 2023决赛
  • - 无向图的双连通分量 + Unix常用命令
  • - 数据对拍器 + 无向图的双连通分量
  • - UTF-8编码介绍 + LeetCode 2023 春季杯团队赛
  • - 有向图的强连通分量 + 数据对拍器
  • - 二分图的相关性质 + UTF-8编码介绍
  • - 欧拉路径的DFS存储顺序 + 有向图的强连通分量
  • diff --git "a/algorithm/\346\240\221\347\212\266\346\225\260\347\273\204\347\232\204\344\275\277\347\224\250\346\200\273\347\273\223/index.html" "b/algorithm/\346\240\221\347\212\266\346\225\260\347\273\204\347\232\204\344\275\277\347\224\250\346\200\273\347\273\223/index.html" index 1536011..6a8eb17 100644 --- "a/algorithm/\346\240\221\347\212\266\346\225\260\347\273\204\347\232\204\344\275\277\347\224\250\346\200\273\347\273\223/index.html" +++ "b/algorithm/\346\240\221\347\212\266\346\225\260\347\273\204\347\232\204\344\275\277\347\224\250\346\200\273\347\273\223/index.html" @@ -410,31 +410,31 @@

    最近文章

  • - Unix常用命令 + SFX 2023决赛
  • - 无向图的双连通分量 + Unix常用命令
  • - 数据对拍器 + 无向图的双连通分量
  • - UTF-8编码介绍 + LeetCode 2023 春季杯团队赛
  • - 有向图的强连通分量 + 数据对拍器
  • - 二分图的相关性质 + UTF-8编码介绍
  • - 欧拉路径的DFS存储顺序 + 有向图的强连通分量
  • diff --git "a/algorithm/\346\254\247\346\213\211\350\267\257\345\276\204\347\232\204DFS\345\255\230\345\202\250\351\241\272\345\272\217/index.html" "b/algorithm/\346\254\247\346\213\211\350\267\257\345\276\204\347\232\204DFS\345\255\230\345\202\250\351\241\272\345\272\217/index.html" index 570ae10..a8c035f 100644 --- "a/algorithm/\346\254\247\346\213\211\350\267\257\345\276\204\347\232\204DFS\345\255\230\345\202\250\351\241\272\345\272\217/index.html" +++ "b/algorithm/\346\254\247\346\213\211\350\267\257\345\276\204\347\232\204DFS\345\255\230\345\202\250\351\241\272\345\272\217/index.html" @@ -775,31 +775,31 @@

    最近文章

  • - Unix常用命令 + SFX 2023决赛
  • - 无向图的双连通分量 + Unix常用命令
  • - 数据对拍器 + 无向图的双连通分量
  • - UTF-8编码介绍 + LeetCode 2023 春季杯团队赛
  • - 有向图的强连通分量 + 数据对拍器
  • - 二分图的相关性质 + UTF-8编码介绍
  • - 欧拉路径的DFS存储顺序 + 有向图的强连通分量
  • diff --git a/archives/index.html b/archives/index.html index bb61f5f..74997e2 100644 --- a/archives/index.html +++ b/archives/index.html @@ -106,7 +106,7 @@

    2023

  • 2023/06/11 - SFX 2023决赛 + SFX 2023决赛
  • @@ -121,7 +121,7 @@

    2023

  • 2023/05/07 - LeetCode 2023 春季杯团队赛 + LeetCode 2023 春季杯团队赛
  • @@ -239,31 +239,31 @@

    最近文章

  • - Unix常用命令 + SFX 2023决赛
  • - 无向图的双连通分量 + Unix常用命令
  • - 数据对拍器 + 无向图的双连通分量
  • - UTF-8编码介绍 + LeetCode 2023 春季杯团队赛
  • - 有向图的强连通分量 + 数据对拍器
  • - 二分图的相关性质 + UTF-8编码介绍
  • - 欧拉路径的DFS存储顺序 + 有向图的强连通分量
  • diff --git a/categories/CS/index.html b/categories/CS/index.html index c0fbef8..278e536 100644 --- a/categories/CS/index.html +++ b/categories/CS/index.html @@ -217,31 +217,31 @@

    最近文章

  • - Unix常用命令 + SFX 2023决赛
  • - 无向图的双连通分量 + Unix常用命令
  • - 数据对拍器 + 无向图的双连通分量
  • - UTF-8编码介绍 + LeetCode 2023 春季杯团队赛
  • - 有向图的强连通分量 + 数据对拍器
  • - 二分图的相关性质 + UTF-8编码介绍
  • - 欧拉路径的DFS存储顺序 + 有向图的强连通分量
  • diff --git a/categories/index.html b/categories/index.html index e29f84b..b4b198d 100644 --- a/categories/index.html +++ b/categories/index.html @@ -156,12 +156,12 @@

  • 2023/06/11 - SFX 2023决赛 + SFX 2023决赛
  • 2023/05/07 - LeetCode 2023 春季杯团队赛 + LeetCode 2023 春季杯团队赛
  • @@ -259,31 +259,31 @@

    最近文章

  • - Unix常用命令 + SFX 2023决赛
  • - 无向图的双连通分量 + Unix常用命令
  • - 数据对拍器 + 无向图的双连通分量
  • - UTF-8编码介绍 + LeetCode 2023 春季杯团队赛
  • - 有向图的强连通分量 + 数据对拍器
  • - 二分图的相关性质 + UTF-8编码介绍
  • - 欧拉路径的DFS存储顺序 + 有向图的强连通分量
  • diff --git "a/categories/\345\267\245\345\205\267/index.html" "b/categories/\345\267\245\345\205\267/index.html" index 29e3b53..8fce615 100644 --- "a/categories/\345\267\245\345\205\267/index.html" +++ "b/categories/\345\267\245\345\205\267/index.html" @@ -191,31 +191,31 @@

    最近文章

  • - Unix常用命令 + SFX 2023决赛
  • - 无向图的双连通分量 + Unix常用命令
  • - 数据对拍器 + 无向图的双连通分量
  • - UTF-8编码介绍 + LeetCode 2023 春季杯团队赛
  • - 有向图的强连通分量 + 数据对拍器
  • - 二分图的相关性质 + UTF-8编码介绍
  • - 欧拉路径的DFS存储顺序 + 有向图的强连通分量
  • diff --git "a/categories/\346\257\224\350\265\233/index.html" "b/categories/\346\257\224\350\265\233/index.html" index c1652a4..080a339 100644 --- "a/categories/\346\257\224\350\265\233/index.html" +++ "b/categories/\346\257\224\350\265\233/index.html" @@ -100,7 +100,7 @@

    @@ -217,31 +217,31 @@

    最近文章

  • - Unix常用命令 + SFX 2023决赛
  • - 无向图的双连通分量 + Unix常用命令
  • - 数据对拍器 + 无向图的双连通分量
  • - UTF-8编码介绍 + LeetCode 2023 春季杯团队赛
  • - 有向图的强连通分量 + 数据对拍器
  • - 二分图的相关性质 + UTF-8编码介绍
  • - 欧拉路径的DFS存储顺序 + 有向图的强连通分量
  • diff --git "a/categories/\346\257\224\350\265\233/index.xml" "b/categories/\346\257\224\350\265\233/index.xml" index 55bc34f..e70ea84 100644 --- "a/categories/\346\257\224\350\265\233/index.xml" +++ "b/categories/\346\257\224\350\265\233/index.xml" @@ -13,19 +13,19 @@ SFX 2023决赛 - https://zzzyc.github.io/solution/SFX-2023%E5%86%B3%E8%B5%9B/ + https://zzzyc.github.io/algorithm/SFX-2023%E5%86%B3%E8%B5%9B/ Sun, 11 Jun 2023 11:27:56 +0800 - https://zzzyc.github.io/solution/SFX-2023%E5%86%B3%E8%B5%9B/ + https://zzzyc.github.io/algorithm/SFX-2023%E5%86%B3%E8%B5%9B/ SFX 2023决赛 20230610 LeetCode 2023 春季杯团队赛 - https://zzzyc.github.io/solution/20230507_LeetCode-2023Spring/ + https://zzzyc.github.io/algorithm/20230507_LeetCode-2023Spring/ Sun, 07 May 2023 17:24:48 +0800 - https://zzzyc.github.io/solution/20230507_LeetCode-2023Spring/ + https://zzzyc.github.io/algorithm/20230507_LeetCode-2023Spring/ LeetCode 2023 春季杯团队赛题解 diff --git "a/categories/\347\256\227\346\263\225/index.html" "b/categories/\347\256\227\346\263\225/index.html" index 2de3a35..9683db9 100644 --- "a/categories/\347\256\227\346\263\225/index.html" +++ "b/categories/\347\256\227\346\263\225/index.html" @@ -321,31 +321,31 @@

    最近文章

  • - Unix常用命令 + SFX 2023决赛
  • - 无向图的双连通分量 + Unix常用命令
  • - 数据对拍器 + 无向图的双连通分量
  • - UTF-8编码介绍 + LeetCode 2023 春季杯团队赛
  • - 有向图的强连通分量 + 数据对拍器
  • - 二分图的相关性质 + UTF-8编码介绍
  • - 欧拉路径的DFS存储顺序 + 有向图的强连通分量
  • diff --git "a/categories/\351\227\262\350\260\210/index.html" "b/categories/\351\227\262\350\260\210/index.html" index e1fd694..e248663 100644 --- "a/categories/\351\227\262\350\260\210/index.html" +++ "b/categories/\351\227\262\350\260\210/index.html" @@ -218,31 +218,31 @@

    最近文章

  • - Unix常用命令 + SFX 2023决赛
  • - 无向图的双连通分量 + Unix常用命令
  • - 数据对拍器 + 无向图的双连通分量
  • - UTF-8编码介绍 + LeetCode 2023 春季杯团队赛
  • - 有向图的强连通分量 + 数据对拍器
  • - 二分图的相关性质 + UTF-8编码介绍
  • - 欧拉路径的DFS存储顺序 + 有向图的强连通分量
  • diff --git "a/cs/UTF-8\347\274\226\347\240\201\344\273\213\347\273\215/index.html" "b/cs/UTF-8\347\274\226\347\240\201\344\273\213\347\273\215/index.html" index b514c61..dbe360f 100644 --- "a/cs/UTF-8\347\274\226\347\240\201\344\273\213\347\273\215/index.html" +++ "b/cs/UTF-8\347\274\226\347\240\201\344\273\213\347\273\215/index.html" @@ -453,31 +453,31 @@

    最近文章

  • - Unix常用命令 + SFX 2023决赛
  • - 无向图的双连通分量 + Unix常用命令
  • - 数据对拍器 + 无向图的双连通分量
  • - UTF-8编码介绍 + LeetCode 2023 春季杯团队赛
  • - 有向图的强连通分量 + 数据对拍器
  • - 二分图的相关性质 + UTF-8编码介绍
  • - 欧拉路径的DFS存储顺序 + 有向图的强连通分量
  • diff --git a/cs/index.html b/cs/index.html index 6bcd334..99b0d52 100644 --- a/cs/index.html +++ b/cs/index.html @@ -210,31 +210,31 @@

    最近文章

  • - Unix常用命令 + SFX 2023决赛
  • - 无向图的双连通分量 + Unix常用命令
  • - 数据对拍器 + 无向图的双连通分量
  • - UTF-8编码介绍 + LeetCode 2023 春季杯团队赛
  • - 有向图的强连通分量 + 数据对拍器
  • - 二分图的相关性质 + UTF-8编码介绍
  • - 欧拉路径的DFS存储顺序 + 有向图的强连通分量
  • diff --git "a/cs/\350\216\267\345\217\226\347\233\256\347\232\204\344\270\273\346\234\272\345\234\260\345\235\200\347\232\204\350\277\207\347\250\213/index.html" "b/cs/\350\216\267\345\217\226\347\233\256\347\232\204\344\270\273\346\234\272\345\234\260\345\235\200\347\232\204\350\277\207\347\250\213/index.html" index 45cec5b..1c256ec 100644 --- "a/cs/\350\216\267\345\217\226\347\233\256\347\232\204\344\270\273\346\234\272\345\234\260\345\235\200\347\232\204\350\277\207\347\250\213/index.html" +++ "b/cs/\350\216\267\345\217\226\347\233\256\347\232\204\344\270\273\346\234\272\345\234\260\345\235\200\347\232\204\350\277\207\347\250\213/index.html" @@ -237,31 +237,31 @@

    最近文章

  • - Unix常用命令 + SFX 2023决赛
  • - 无向图的双连通分量 + Unix常用命令
  • - 数据对拍器 + 无向图的双连通分量
  • - UTF-8编码介绍 + LeetCode 2023 春季杯团队赛
  • - 有向图的强连通分量 + 数据对拍器
  • - 二分图的相关性质 + UTF-8编码介绍
  • - 欧拉路径的DFS存储顺序 + 有向图的强连通分量
  • diff --git a/index.html b/index.html index b69c8a7..e83aee0 100644 --- a/index.html +++ b/index.html @@ -167,7 +167,7 @@

    @@ -244,7 +244,7 @@

    @@ -439,31 +439,31 @@

    最近文章

  • - Unix常用命令 + SFX 2023决赛
  • - 无向图的双连通分量 + Unix常用命令
  • - 数据对拍器 + 无向图的双连通分量
  • - UTF-8编码介绍 + LeetCode 2023 春季杯团队赛
  • - 有向图的强连通分量 + 数据对拍器
  • - 二分图的相关性质 + UTF-8编码介绍
  • - 欧拉路径的DFS存储顺序 + 有向图的强连通分量
  • diff --git a/index.xml b/index.xml index 1df1519..180d8a2 100644 --- a/index.xml +++ b/index.xml @@ -40,10 +40,10 @@ SFX 2023决赛 - https://zzzyc.github.io/solution/SFX-2023%E5%86%B3%E8%B5%9B/ + https://zzzyc.github.io/algorithm/SFX-2023%E5%86%B3%E8%B5%9B/ Sun, 11 Jun 2023 11:27:56 +0800 - https://zzzyc.github.io/solution/SFX-2023%E5%86%B3%E8%B5%9B/ + https://zzzyc.github.io/algorithm/SFX-2023%E5%86%B3%E8%B5%9B/ SFX 2023决赛 20230610 @@ -85,10 +85,10 @@ LeetCode 2023 春季杯团队赛 - https://zzzyc.github.io/solution/20230507_LeetCode-2023Spring/ + https://zzzyc.github.io/algorithm/20230507_LeetCode-2023Spring/ Sun, 07 May 2023 17:24:48 +0800 - https://zzzyc.github.io/solution/20230507_LeetCode-2023Spring/ + https://zzzyc.github.io/algorithm/20230507_LeetCode-2023Spring/ LeetCode 2023 春季杯团队赛题解 diff --git a/page/2/index.html b/page/2/index.html index 5200171..fa2bb78 100644 --- a/page/2/index.html +++ b/page/2/index.html @@ -314,31 +314,31 @@

    最近文章

  • - Unix常用命令 + SFX 2023决赛
  • - 无向图的双连通分量 + Unix常用命令
  • - 数据对拍器 + 无向图的双连通分量
  • - UTF-8编码介绍 + LeetCode 2023 春季杯团队赛
  • - 有向图的强连通分量 + 数据对拍器
  • - 二分图的相关性质 + UTF-8编码介绍
  • - 欧拉路径的DFS存储顺序 + 有向图的强连通分量
  • diff --git a/post/index.html b/post/index.html index f6e0194..5e4eca1 100644 --- a/post/index.html +++ b/post/index.html @@ -211,31 +211,31 @@

    最近文章

  • - Unix常用命令 + SFX 2023决赛
  • - 无向图的双连通分量 + Unix常用命令
  • - 数据对拍器 + 无向图的双连通分量
  • - UTF-8编码介绍 + LeetCode 2023 春季杯团队赛
  • - 有向图的强连通分量 + 数据对拍器
  • - 二分图的相关性质 + UTF-8编码介绍
  • - 欧拉路径的DFS存储顺序 + 有向图的强连通分量
  • diff --git "a/post/\346\226\260\347\232\204\345\215\232\345\256\242\346\226\260\347\232\204\347\224\237\346\264\273/index.html" "b/post/\346\226\260\347\232\204\345\215\232\345\256\242\346\226\260\347\232\204\347\224\237\346\264\273/index.html" index 2cb4e86..34dd384 100644 --- "a/post/\346\226\260\347\232\204\345\215\232\345\256\242\346\226\260\347\232\204\347\224\237\346\264\273/index.html" +++ "b/post/\346\226\260\347\232\204\345\215\232\345\256\242\346\226\260\347\232\204\347\224\237\346\264\273/index.html" @@ -289,31 +289,31 @@

    最近文章

  • - Unix常用命令 + SFX 2023决赛
  • - 无向图的双连通分量 + Unix常用命令
  • - 数据对拍器 + 无向图的双连通分量
  • - UTF-8编码介绍 + LeetCode 2023 春季杯团队赛
  • - 有向图的强连通分量 + 数据对拍器
  • - 二分图的相关性质 + UTF-8编码介绍
  • - 欧拉路径的DFS存储顺序 + 有向图的强连通分量
  • diff --git "a/post/\350\260\210\350\260\210\346\234\200\350\277\221/index.html" "b/post/\350\260\210\350\260\210\346\234\200\350\277\221/index.html" index 1d14423..c55c42c 100644 --- "a/post/\350\260\210\350\260\210\346\234\200\350\277\221/index.html" +++ "b/post/\350\260\210\350\260\210\346\234\200\350\277\221/index.html" @@ -300,31 +300,31 @@

    最近文章

  • - Unix常用命令 + SFX 2023决赛
  • - 无向图的双连通分量 + Unix常用命令
  • - 数据对拍器 + 无向图的双连通分量
  • - UTF-8编码介绍 + LeetCode 2023 春季杯团队赛
  • - 有向图的强连通分量 + 数据对拍器
  • - 二分图的相关性质 + UTF-8编码介绍
  • - 欧拉路径的DFS存储顺序 + 有向图的强连通分量
  • diff --git a/problems/index.html b/problems/index.html index 05be194..1bb854f 100644 --- a/problems/index.html +++ b/problems/index.html @@ -212,31 +212,31 @@

    最近文章

  • - Unix常用命令 + SFX 2023决赛
  • - 无向图的双连通分量 + Unix常用命令
  • - 数据对拍器 + 无向图的双连通分量
  • - UTF-8编码介绍 + LeetCode 2023 春季杯团队赛
  • - 有向图的强连通分量 + 数据对拍器
  • - 二分图的相关性质 + UTF-8编码介绍
  • - 欧拉路径的DFS存储顺序 + 有向图的强连通分量
  • diff --git a/research/conclusion/index.html b/research/conclusion/index.html index bc3052d..aeb1c06 100644 --- a/research/conclusion/index.html +++ b/research/conclusion/index.html @@ -325,31 +325,31 @@

    最近文章

  • - Unix常用命令 + SFX 2023决赛
  • - 无向图的双连通分量 + Unix常用命令
  • - 数据对拍器 + 无向图的双连通分量
  • - UTF-8编码介绍 + LeetCode 2023 春季杯团队赛
  • - 有向图的强连通分量 + 数据对拍器
  • - 二分图的相关性质 + UTF-8编码介绍
  • - 欧拉路径的DFS存储顺序 + 有向图的强连通分量
  • diff --git a/research/conference/index.html b/research/conference/index.html index 306ef71..e8bbbe9 100644 --- a/research/conference/index.html +++ b/research/conference/index.html @@ -252,31 +252,31 @@

    最近文章

  • - Unix常用命令 + SFX 2023决赛
  • - 无向图的双连通分量 + Unix常用命令
  • - 数据对拍器 + 无向图的双连通分量
  • - UTF-8编码介绍 + LeetCode 2023 春季杯团队赛
  • - 有向图的强连通分量 + 数据对拍器
  • - 二分图的相关性质 + UTF-8编码介绍
  • - 欧拉路径的DFS存储顺序 + 有向图的强连通分量
  • diff --git a/research/index.html b/research/index.html index c9be8ed..7370edb 100644 --- a/research/index.html +++ b/research/index.html @@ -196,31 +196,31 @@

    最近文章

  • - Unix常用命令 + SFX 2023决赛
  • - 无向图的双连通分量 + Unix常用命令
  • - 数据对拍器 + 无向图的双连通分量
  • - UTF-8编码介绍 + LeetCode 2023 春季杯团队赛
  • - 有向图的强连通分量 + 数据对拍器
  • - 二分图的相关性质 + UTF-8编码介绍
  • - 欧拉路径的DFS存储顺序 + 有向图的强连通分量
  • diff --git a/search/index.html b/search/index.html index 251445c..b4dc66c 100644 --- a/search/index.html +++ b/search/index.html @@ -218,31 +218,31 @@

    最近文章

  • - Unix常用命令 + SFX 2023决赛
  • - 无向图的双连通分量 + Unix常用命令
  • - 数据对拍器 + 无向图的双连通分量
  • - UTF-8编码介绍 + LeetCode 2023 春季杯团队赛
  • - 有向图的强连通分量 + 数据对拍器
  • - 二分图的相关性质 + UTF-8编码介绍
  • - 欧拉路径的DFS存储顺序 + 有向图的强连通分量
  • diff --git a/sitemap.xml b/sitemap.xml index c183c87..1ff1075 100644 --- a/sitemap.xml +++ b/sitemap.xml @@ -63,7 +63,7 @@ - https://zzzyc.github.io/solution/SFX-2023%E5%86%B3%E8%B5%9B/ + https://zzzyc.github.io/algorithm/SFX-2023%E5%86%B3%E8%B5%9B/ 2023-06-11T11:27:56+08:00 @@ -72,11 +72,6 @@ 2023-06-11T11:27:56+08:00 - - https://zzzyc.github.io/solution/ - 2023-06-11T11:27:56+08:00 - - https://zzzyc.github.io/tool/ 2023-06-08T01:25:02+08:00 @@ -118,7 +113,7 @@ - https://zzzyc.github.io/solution/20230507_LeetCode-2023Spring/ + https://zzzyc.github.io/algorithm/20230507_LeetCode-2023Spring/ 2023-05-07T17:24:48+08:00 @@ -285,4 +280,8 @@ https://zzzyc.github.io/search/ + + https://zzzyc.github.io/solution/ + + \ No newline at end of file diff --git a/solution/index.html b/solution/index.html index 7cf8f28..581fc10 100644 --- a/solution/index.html +++ b/solution/index.html @@ -88,62 +88,6 @@
    - - - - - - - - @@ -210,31 +154,31 @@

    最近文章

  • - Unix常用命令 + SFX 2023决赛
  • - 无向图的双连通分量 + Unix常用命令
  • - 数据对拍器 + 无向图的双连通分量
  • - UTF-8编码介绍 + LeetCode 2023 春季杯团队赛
  • - 有向图的强连通分量 + 数据对拍器
  • - 二分图的相关性质 + UTF-8编码介绍
  • - 欧拉路径的DFS存储顺序 + 有向图的强连通分量
  • diff --git a/solution/index.xml b/solution/index.xml index 351536c..49535c8 100644 --- a/solution/index.xml +++ b/solution/index.xml @@ -6,28 +6,9 @@ Recent content in 题解 on solego's blog Hugo -- gohugo.io zh-hans - Sun, 11 Jun 2023 11:27:56 +0800 - - SFX 2023决赛 - https://zzzyc.github.io/solution/SFX-2023%E5%86%B3%E8%B5%9B/ - Sun, 11 Jun 2023 11:27:56 +0800 - - https://zzzyc.github.io/solution/SFX-2023%E5%86%B3%E8%B5%9B/ - SFX 2023决赛 20230610 - - - - LeetCode 2023 春季杯团队赛 - https://zzzyc.github.io/solution/20230507_LeetCode-2023Spring/ - Sun, 07 May 2023 17:24:48 +0800 - - https://zzzyc.github.io/solution/20230507_LeetCode-2023Spring/ - LeetCode 2023 春季杯团队赛题解 - - \ No newline at end of file diff --git a/tags/DFS/index.html b/tags/DFS/index.html index e790ad6..1b3be6f 100644 --- a/tags/DFS/index.html +++ b/tags/DFS/index.html @@ -190,31 +190,31 @@

    最近文章

  • - Unix常用命令 + SFX 2023决赛
  • - 无向图的双连通分量 + Unix常用命令
  • - 数据对拍器 + 无向图的双连通分量
  • - UTF-8编码介绍 + LeetCode 2023 春季杯团队赛
  • - 有向图的强连通分量 + 数据对拍器
  • - 二分图的相关性质 + UTF-8编码介绍
  • - 欧拉路径的DFS存储顺序 + 有向图的强连通分量
  • diff --git a/tags/LeetCode/index.html b/tags/LeetCode/index.html index 2c7557c..63dbd76 100644 --- a/tags/LeetCode/index.html +++ b/tags/LeetCode/index.html @@ -99,7 +99,7 @@

    @@ -190,31 +190,31 @@

    最近文章

  • - Unix常用命令 + SFX 2023决赛
  • - 无向图的双连通分量 + Unix常用命令
  • - 数据对拍器 + 无向图的双连通分量
  • - UTF-8编码介绍 + LeetCode 2023 春季杯团队赛
  • - 有向图的强连通分量 + 数据对拍器
  • - 二分图的相关性质 + UTF-8编码介绍
  • - 欧拉路径的DFS存储顺序 + 有向图的强连通分量
  • diff --git a/tags/LeetCode/index.xml b/tags/LeetCode/index.xml index e0829cd..026cc7b 100644 --- a/tags/LeetCode/index.xml +++ b/tags/LeetCode/index.xml @@ -13,10 +13,10 @@ LeetCode 2023 春季杯团队赛 - https://zzzyc.github.io/solution/20230507_LeetCode-2023Spring/ + https://zzzyc.github.io/algorithm/20230507_LeetCode-2023Spring/ Sun, 07 May 2023 17:24:48 +0800 - https://zzzyc.github.io/solution/20230507_LeetCode-2023Spring/ + https://zzzyc.github.io/algorithm/20230507_LeetCode-2023Spring/ LeetCode 2023 春季杯团队赛题解 diff --git a/tags/UTF-8/index.html b/tags/UTF-8/index.html index 2bc0ab1..2c3963a 100644 --- a/tags/UTF-8/index.html +++ b/tags/UTF-8/index.html @@ -190,31 +190,31 @@

    最近文章

  • - Unix常用命令 + SFX 2023决赛
  • - 无向图的双连通分量 + Unix常用命令
  • - 数据对拍器 + 无向图的双连通分量
  • - UTF-8编码介绍 + LeetCode 2023 春季杯团队赛
  • - 有向图的强连通分量 + 数据对拍器
  • - 二分图的相关性质 + UTF-8编码介绍
  • - 欧拉路径的DFS存储顺序 + 有向图的强连通分量
  • diff --git a/tags/index.html b/tags/index.html index 9be1ba9..09572f6 100644 --- a/tags/index.html +++ b/tags/index.html @@ -113,7 +113,7 @@

  • 2023/05/07 - LeetCode 2023 春季杯团队赛 + LeetCode 2023 春季杯团队赛
  • @@ -427,31 +427,31 @@

    最近文章

  • - Unix常用命令 + SFX 2023决赛
  • - 无向图的双连通分量 + Unix常用命令
  • - 数据对拍器 + 无向图的双连通分量
  • - UTF-8编码介绍 + LeetCode 2023 春季杯团队赛
  • - 有向图的强连通分量 + 数据对拍器
  • - 二分图的相关性质 + UTF-8编码介绍
  • - 欧拉路径的DFS存储顺序 + 有向图的强连通分量
  • diff --git "a/tags/\344\272\214\345\210\206\345\233\276/index.html" "b/tags/\344\272\214\345\210\206\345\233\276/index.html" index 2d57e1f..01731ee 100644 --- "a/tags/\344\272\214\345\210\206\345\233\276/index.html" +++ "b/tags/\344\272\214\345\210\206\345\233\276/index.html" @@ -190,31 +190,31 @@

    最近文章

  • - Unix常用命令 + SFX 2023决赛
  • - 无向图的双连通分量 + Unix常用命令
  • - 数据对拍器 + 无向图的双连通分量
  • - UTF-8编码介绍 + LeetCode 2023 春季杯团队赛
  • - 有向图的强连通分量 + 数据对拍器
  • - 二分图的相关性质 + UTF-8编码介绍
  • - 欧拉路径的DFS存储顺序 + 有向图的强连通分量
  • diff --git "a/tags/\344\275\215\350\277\220\347\256\227/index.html" "b/tags/\344\275\215\350\277\220\347\256\227/index.html" index ec4eb8b..b174bd8 100644 --- "a/tags/\344\275\215\350\277\220\347\256\227/index.html" +++ "b/tags/\344\275\215\350\277\220\347\256\227/index.html" @@ -190,31 +190,31 @@

    最近文章

  • - Unix常用命令 + SFX 2023决赛
  • - 无向图的双连通分量 + Unix常用命令
  • - 数据对拍器 + 无向图的双连通分量
  • - UTF-8编码介绍 + LeetCode 2023 春季杯团队赛
  • - 有向图的强连通分量 + 数据对拍器
  • - 二分图的相关性质 + UTF-8编码介绍
  • - 欧拉路径的DFS存储顺序 + 有向图的强连通分量
  • diff --git "a/tags/\345\255\227\347\254\246\347\274\226\347\240\201/index.html" "b/tags/\345\255\227\347\254\246\347\274\226\347\240\201/index.html" index 7a711d3..bc67585 100644 --- "a/tags/\345\255\227\347\254\246\347\274\226\347\240\201/index.html" +++ "b/tags/\345\255\227\347\254\246\347\274\226\347\240\201/index.html" @@ -190,31 +190,31 @@

    最近文章

  • - Unix常用命令 + SFX 2023决赛
  • - 无向图的双连通分量 + Unix常用命令
  • - 数据对拍器 + 无向图的双连通分量
  • - UTF-8编码介绍 + LeetCode 2023 春季杯团队赛
  • - 有向图的强连通分量 + 数据对拍器
  • - 二分图的相关性质 + UTF-8编码介绍
  • - 欧拉路径的DFS存储顺序 + 有向图的强连通分量
  • diff --git "a/tags/\345\257\271\346\213\215/index.html" "b/tags/\345\257\271\346\213\215/index.html" index c6bd364..2110dae 100644 --- "a/tags/\345\257\271\346\213\215/index.html" +++ "b/tags/\345\257\271\346\213\215/index.html" @@ -190,31 +190,31 @@

    最近文章

  • - Unix常用命令 + SFX 2023决赛
  • - 无向图的双连通分量 + Unix常用命令
  • - 数据对拍器 + 无向图的双连通分量
  • - UTF-8编码介绍 + LeetCode 2023 春季杯团队赛
  • - 有向图的强连通分量 + 数据对拍器
  • - 二分图的相关性质 + UTF-8编码介绍
  • - 欧拉路径的DFS存储顺序 + 有向图的强连通分量
  • diff --git "a/tags/\345\274\272\350\277\236\351\200\232\345\210\206\351\207\217/index.html" "b/tags/\345\274\272\350\277\236\351\200\232\345\210\206\351\207\217/index.html" index cda16f1..2d9b988 100644 --- "a/tags/\345\274\272\350\277\236\351\200\232\345\210\206\351\207\217/index.html" +++ "b/tags/\345\274\272\350\277\236\351\200\232\345\210\206\351\207\217/index.html" @@ -190,31 +190,31 @@

    最近文章

  • - Unix常用命令 + SFX 2023决赛
  • - 无向图的双连通分量 + Unix常用命令
  • - 数据对拍器 + 无向图的双连通分量
  • - UTF-8编码介绍 + LeetCode 2023 春季杯团队赛
  • - 有向图的强连通分量 + 数据对拍器
  • - 二分图的相关性质 + UTF-8编码介绍
  • - 欧拉路径的DFS存储顺序 + 有向图的强连通分量
  • diff --git "a/tags/\346\213\223\346\211\221\346\216\222\345\272\217/index.html" "b/tags/\346\213\223\346\211\221\346\216\222\345\272\217/index.html" index 4fbee2d..dd02a1e 100644 --- "a/tags/\346\213\223\346\211\221\346\216\222\345\272\217/index.html" +++ "b/tags/\346\213\223\346\211\221\346\216\222\345\272\217/index.html" @@ -190,31 +190,31 @@

    最近文章

  • - Unix常用命令 + SFX 2023决赛
  • - 无向图的双连通分量 + Unix常用命令
  • - 数据对拍器 + 无向图的双连通分量
  • - UTF-8编码介绍 + LeetCode 2023 春季杯团队赛
  • - 有向图的强连通分量 + 数据对拍器
  • - 二分图的相关性质 + UTF-8编码介绍
  • - 欧拉路径的DFS存储顺序 + 有向图的强连通分量
  • diff --git "a/tags/\346\234\200\345\244\247\345\233\242/index.html" "b/tags/\346\234\200\345\244\247\345\233\242/index.html" index 50f1782..44ee609 100644 --- "a/tags/\346\234\200\345\244\247\345\233\242/index.html" +++ "b/tags/\346\234\200\345\244\247\345\233\242/index.html" @@ -190,31 +190,31 @@

    最近文章

  • - Unix常用命令 + SFX 2023决赛
  • - 无向图的双连通分量 + Unix常用命令
  • - 数据对拍器 + 无向图的双连通分量
  • - UTF-8编码介绍 + LeetCode 2023 春季杯团队赛
  • - 有向图的强连通分量 + 数据对拍器
  • - 二分图的相关性质 + UTF-8编码介绍
  • - 欧拉路径的DFS存储顺序 + 有向图的强连通分量
  • diff --git "a/tags/\346\234\200\345\244\247\347\213\254\347\253\213\351\233\206/index.html" "b/tags/\346\234\200\345\244\247\347\213\254\347\253\213\351\233\206/index.html" index dcbb145..c0a57b3 100644 --- "a/tags/\346\234\200\345\244\247\347\213\254\347\253\213\351\233\206/index.html" +++ "b/tags/\346\234\200\345\244\247\347\213\254\347\253\213\351\233\206/index.html" @@ -190,31 +190,31 @@

    最近文章

  • - Unix常用命令 + SFX 2023决赛
  • - 无向图的双连通分量 + Unix常用命令
  • - 数据对拍器 + 无向图的双连通分量
  • - UTF-8编码介绍 + LeetCode 2023 春季杯团队赛
  • - 有向图的强连通分量 + 数据对拍器
  • - 二分图的相关性质 + UTF-8编码介绍
  • - 欧拉路径的DFS存储顺序 + 有向图的强连通分量
  • diff --git "a/tags/\346\234\200\345\244\247\350\276\271\345\214\271\351\205\215/index.html" "b/tags/\346\234\200\345\244\247\350\276\271\345\214\271\351\205\215/index.html" index e2e6213..ba94fb7 100644 --- "a/tags/\346\234\200\345\244\247\350\276\271\345\214\271\351\205\215/index.html" +++ "b/tags/\346\234\200\345\244\247\350\276\271\345\214\271\351\205\215/index.html" @@ -190,31 +190,31 @@

    最近文章

  • - Unix常用命令 + SFX 2023决赛
  • - 无向图的双连通分量 + Unix常用命令
  • - 数据对拍器 + 无向图的双连通分量
  • - UTF-8编码介绍 + LeetCode 2023 春季杯团队赛
  • - 有向图的强连通分量 + 数据对拍器
  • - 二分图的相关性质 + UTF-8编码介绍
  • - 欧拉路径的DFS存储顺序 + 有向图的强连通分量
  • diff --git "a/tags/\346\234\200\345\260\217\347\202\271\350\246\206\347\233\226/index.html" "b/tags/\346\234\200\345\260\217\347\202\271\350\246\206\347\233\226/index.html" index 4a860bd..f2b5898 100644 --- "a/tags/\346\234\200\345\260\217\347\202\271\350\246\206\347\233\226/index.html" +++ "b/tags/\346\234\200\345\260\217\347\202\271\350\246\206\347\233\226/index.html" @@ -190,31 +190,31 @@

    最近文章

  • - Unix常用命令 + SFX 2023决赛
  • - 无向图的双连通分量 + Unix常用命令
  • - 数据对拍器 + 无向图的双连通分量
  • - UTF-8编码介绍 + LeetCode 2023 春季杯团队赛
  • - 有向图的强连通分量 + 数据对拍器
  • - 二分图的相关性质 + UTF-8编码介绍
  • - 欧拉路径的DFS存储顺序 + 有向图的强连通分量
  • diff --git "a/tags/\346\234\200\345\260\217\350\267\257\345\276\204\347\202\271\350\246\206\347\233\226/index.html" "b/tags/\346\234\200\345\260\217\350\267\257\345\276\204\347\202\271\350\246\206\347\233\226/index.html" index b0ef7eb..cae5317 100644 --- "a/tags/\346\234\200\345\260\217\350\267\257\345\276\204\347\202\271\350\246\206\347\233\226/index.html" +++ "b/tags/\346\234\200\345\260\217\350\267\257\345\276\204\347\202\271\350\246\206\347\233\226/index.html" @@ -190,31 +190,31 @@

    最近文章

  • - Unix常用命令 + SFX 2023决赛
  • - 无向图的双连通分量 + Unix常用命令
  • - 数据对拍器 + 无向图的双连通分量
  • - UTF-8编码介绍 + LeetCode 2023 春季杯团队赛
  • - 有向图的强连通分量 + 数据对拍器
  • - 二分图的相关性质 + UTF-8编码介绍
  • - 欧拉路径的DFS存储顺序 + 有向图的强连通分量
  • diff --git "a/tags/\346\234\200\345\260\217\351\207\215\345\244\215\350\267\257\345\276\204\347\202\271\350\246\206\347\233\226/index.html" "b/tags/\346\234\200\345\260\217\351\207\215\345\244\215\350\267\257\345\276\204\347\202\271\350\246\206\347\233\226/index.html" index 816deb2..db59aae 100644 --- "a/tags/\346\234\200\345\260\217\351\207\215\345\244\215\350\267\257\345\276\204\347\202\271\350\246\206\347\233\226/index.html" +++ "b/tags/\346\234\200\345\260\217\351\207\215\345\244\215\350\267\257\345\276\204\347\202\271\350\246\206\347\233\226/index.html" @@ -190,31 +190,31 @@

    最近文章

  • - Unix常用命令 + SFX 2023决赛
  • - 无向图的双连通分量 + Unix常用命令
  • - 数据对拍器 + 无向图的双连通分量
  • - UTF-8编码介绍 + LeetCode 2023 春季杯团队赛
  • - 有向图的强连通分量 + 数据对拍器
  • - 二分图的相关性质 + UTF-8编码介绍
  • - 欧拉路径的DFS存储顺序 + 有向图的强连通分量
  • diff --git "a/tags/\346\234\200\350\277\221/index.html" "b/tags/\346\234\200\350\277\221/index.html" index eccb98e..8963c96 100644 --- "a/tags/\346\234\200\350\277\221/index.html" +++ "b/tags/\346\234\200\350\277\221/index.html" @@ -191,31 +191,31 @@

    最近文章

  • - Unix常用命令 + SFX 2023决赛
  • - 无向图的双连通分量 + Unix常用命令
  • - 数据对拍器 + 无向图的双连通分量
  • - UTF-8编码介绍 + LeetCode 2023 春季杯团队赛
  • - 有向图的强连通分量 + 数据对拍器
  • - 二分图的相关性质 + UTF-8编码介绍
  • - 欧拉路径的DFS存储顺序 + 有向图的强连通分量
  • diff --git "a/tags/\346\240\221\347\212\266\346\225\260\347\273\204/index.html" "b/tags/\346\240\221\347\212\266\346\225\260\347\273\204/index.html" index b3485ed..853b557 100644 --- "a/tags/\346\240\221\347\212\266\346\225\260\347\273\204/index.html" +++ "b/tags/\346\240\221\347\212\266\346\225\260\347\273\204/index.html" @@ -190,31 +190,31 @@

    最近文章

  • - Unix常用命令 + SFX 2023决赛
  • - 无向图的双连通分量 + Unix常用命令
  • - 数据对拍器 + 无向图的双连通分量
  • - UTF-8编码介绍 + LeetCode 2023 春季杯团队赛
  • - 有向图的强连通分量 + 数据对拍器
  • - 二分图的相关性质 + UTF-8编码介绍
  • - 欧拉路径的DFS存储顺序 + 有向图的强连通分量
  • diff --git "a/tags/\346\254\247\346\213\211\350\267\257\345\276\204/index.html" "b/tags/\346\254\247\346\213\211\350\267\257\345\276\204/index.html" index 8fbea6d..cb445ca 100644 --- "a/tags/\346\254\247\346\213\211\350\267\257\345\276\204/index.html" +++ "b/tags/\346\254\247\346\213\211\350\267\257\345\276\204/index.html" @@ -190,31 +190,31 @@

    最近文章

  • - Unix常用命令 + SFX 2023决赛
  • - 无向图的双连通分量 + Unix常用命令
  • - 数据对拍器 + 无向图的双连通分量
  • - UTF-8编码介绍 + LeetCode 2023 春季杯团队赛
  • - 有向图的强连通分量 + 数据对拍器
  • - 二分图的相关性质 + UTF-8编码介绍
  • - 欧拉路径的DFS存储顺序 + 有向图的强连通分量
  • diff --git "a/tags/\347\202\271\347\232\204\345\217\214\350\277\236\351\200\232\345\210\206\351\207\217/index.html" "b/tags/\347\202\271\347\232\204\345\217\214\350\277\236\351\200\232\345\210\206\351\207\217/index.html" index 7101798..74b9b5b 100644 --- "a/tags/\347\202\271\347\232\204\345\217\214\350\277\236\351\200\232\345\210\206\351\207\217/index.html" +++ "b/tags/\347\202\271\347\232\204\345\217\214\350\277\236\351\200\232\345\210\206\351\207\217/index.html" @@ -190,31 +190,31 @@

    最近文章

  • - Unix常用命令 + SFX 2023决赛
  • - 无向图的双连通分量 + Unix常用命令
  • - 数据对拍器 + 无向图的双连通分量
  • - UTF-8编码介绍 + LeetCode 2023 春季杯团队赛
  • - 有向图的强连通分量 + 数据对拍器
  • - 二分图的相关性质 + UTF-8编码介绍
  • - 欧拉路径的DFS存储顺序 + 有向图的强连通分量
  • diff --git "a/tags/\350\256\241\347\256\227\346\234\272\347\275\221\347\273\234/index.html" "b/tags/\350\256\241\347\256\227\346\234\272\347\275\221\347\273\234/index.html" index 619066e..633b7d5 100644 --- "a/tags/\350\256\241\347\256\227\346\234\272\347\275\221\347\273\234/index.html" +++ "b/tags/\350\256\241\347\256\227\346\234\272\347\275\221\347\273\234/index.html" @@ -190,31 +190,31 @@

    最近文章

  • - Unix常用命令 + SFX 2023决赛
  • - 无向图的双连通分量 + Unix常用命令
  • - 数据对拍器 + 无向图的双连通分量
  • - UTF-8编码介绍 + LeetCode 2023 春季杯团队赛
  • - 有向图的强连通分量 + 数据对拍器
  • - 二分图的相关性质 + UTF-8编码介绍
  • - 欧拉路径的DFS存储顺序 + 有向图的强连通分量
  • diff --git "a/tags/\350\276\271\347\232\204\345\217\214\350\277\236\351\200\232\345\210\206\351\207\217/index.html" "b/tags/\350\276\271\347\232\204\345\217\214\350\277\236\351\200\232\345\210\206\351\207\217/index.html" index 9bd65bd..e3dc0e7 100644 --- "a/tags/\350\276\271\347\232\204\345\217\214\350\277\236\351\200\232\345\210\206\351\207\217/index.html" +++ "b/tags/\350\276\271\347\232\204\345\217\214\350\277\236\351\200\232\345\210\206\351\207\217/index.html" @@ -190,31 +190,31 @@

    最近文章

  • - Unix常用命令 + SFX 2023决赛
  • - 无向图的双连通分量 + Unix常用命令
  • - 数据对拍器 + 无向图的双连通分量
  • - UTF-8编码介绍 + LeetCode 2023 春季杯团队赛
  • - 有向图的强连通分量 + 数据对拍器
  • - 二分图的相关性质 + UTF-8编码介绍
  • - 欧拉路径的DFS存储顺序 + 有向图的强连通分量
  • diff --git a/temp/index.html b/temp/index.html index de89cf9..2adc5bd 100644 --- a/temp/index.html +++ b/temp/index.html @@ -211,31 +211,31 @@

    最近文章

  • - Unix常用命令 + SFX 2023决赛
  • - 无向图的双连通分量 + Unix常用命令
  • - 数据对拍器 + 无向图的双连通分量
  • - UTF-8编码介绍 + LeetCode 2023 春季杯团队赛
  • - 有向图的强连通分量 + 数据对拍器
  • - 二分图的相关性质 + UTF-8编码介绍
  • - 欧拉路径的DFS存储顺序 + 有向图的强连通分量
  • diff --git "a/tool/Unix\345\270\270\347\224\250\345\221\275\344\273\244/index.html" "b/tool/Unix\345\270\270\347\224\250\345\221\275\344\273\244/index.html" index ed27ecb..8dd1a8e 100644 --- "a/tool/Unix\345\270\270\347\224\250\345\221\275\344\273\244/index.html" +++ "b/tool/Unix\345\270\270\347\224\250\345\221\275\344\273\244/index.html" @@ -677,31 +677,31 @@

    最近文章

  • - Unix常用命令 + SFX 2023决赛
  • - 无向图的双连通分量 + Unix常用命令
  • - 数据对拍器 + 无向图的双连通分量
  • - UTF-8编码介绍 + LeetCode 2023 春季杯团队赛
  • - 有向图的强连通分量 + 数据对拍器
  • - 二分图的相关性质 + UTF-8编码介绍
  • - 欧拉路径的DFS存储顺序 + 有向图的强连通分量
  • diff --git a/tool/index.html b/tool/index.html index 114579e..6cb19b8 100644 --- a/tool/index.html +++ b/tool/index.html @@ -203,31 +203,31 @@

    最近文章

  • - Unix常用命令 + SFX 2023决赛
  • - 无向图的双连通分量 + Unix常用命令
  • - 数据对拍器 + 无向图的双连通分量
  • - UTF-8编码介绍 + LeetCode 2023 春季杯团队赛
  • - 有向图的强连通分量 + 数据对拍器
  • - 二分图的相关性质 + UTF-8编码介绍
  • - 欧拉路径的DFS存储顺序 + 有向图的强连通分量
  • diff --git "a/tool/\346\225\260\346\215\256\345\257\271\346\213\215\345\231\250/index.html" "b/tool/\346\225\260\346\215\256\345\257\271\346\213\215\345\231\250/index.html" index 6f021a2..e644ea8 100644 --- "a/tool/\346\225\260\346\215\256\345\257\271\346\213\215\345\231\250/index.html" +++ "b/tool/\346\225\260\346\215\256\345\257\271\346\213\215\345\231\250/index.html" @@ -355,31 +355,31 @@

    最近文章

  • - Unix常用命令 + SFX 2023决赛
  • - 无向图的双连通分量 + Unix常用命令
  • - 数据对拍器 + 无向图的双连通分量
  • - UTF-8编码介绍 + LeetCode 2023 春季杯团队赛
  • - 有向图的强连通分量 + 数据对拍器
  • - 二分图的相关性质 + UTF-8编码介绍
  • - 欧拉路径的DFS存储顺序 + 有向图的强连通分量