avatar
文章
215
标签
0
分类
1
主页
分类
标签
归档
友链
爱飞鱼的blogDFS order
搜索
主页
分类
标签
归档
友链

DFS order

发表于2024-05-02|更新于2025-03-04|ICPC
|浏览量:

title: DFS order
categories:
- ICPC
tags:
- null
abbrlink: ac1f1f56
date: 2024-05-02 00:00:00

DFS order

[P9872 EC Final 2021] DFS Order - 洛谷 | 计算机科学教育新生态 (luogu.com.cn)

[P9669 ICPC2022 Jinan R] DFS Order 2 - 洛谷 | 计算机科学教育新生态 (luogu.com.cn)

[P9669 ICPC2022 Jinan R] DFS Order 2 题解 - 洛谷专栏 (luogu.com.cn)

DFS Order 3 - Problem - QOJ.ac

DFS Order 4 - Problem - QOJ.ac

DFS Order 5 - Problem - QOJ.ac

文章作者: WTY
文章链接: https://my-mathmaster-github-io.vercel.app/posts/ac1f1f56.html
版权声明: 本博客所有文章除特别声明外,均采用 CC BY-NC-SA 4.0 许可协议。转载请注明来源 爱飞鱼的blog!
cover of previous post
上一篇
线段树模板区间加(含懒标记)
title: 线段树模板区间加(含懒标记)categories: - ICPCtags: - nullabbrlink: 7463b265date: 2024-04-16 00:00:00const int N = 1e5 + 10; int n, m; int a[N]; struct Tree{ int l,r; ll sum,add; }tr[4*N]; void build(int u,int l,int r){ // l=tr[u].l;r=tr[u].r; //注释掉的部分是典型的错误,对于build过程中我们是初始化编号对应区间节点,上面赋值逻辑反了 tr[u]={l,r}; if(l==r)tr[u].sum=a[l]; else{ int...
cover of next post
下一篇
矩阵快速幂
title: 矩阵快速幂categories: - ICPCtags: - nullabbrlink: 7f45ba65date: 2024-05-16 00:00:00debug:重载乘号的时候要把两个传进来的矩阵用起来// Problem: P3390 【模板】矩阵快速幂 // Contest: Luogu // URL: https://www.luogu.com.cn/problem/P3390 // Memory Limit: 256 MB // Time Limit: 1000 ms // // Powered by CP Editor (https://cpeditor.org) #include <bits/stdc++.h> using namespace std; #define ll long long # define int long long #define ull unsigned long long #define pii pair<int,int> #define baoliu(x, y) cout...
avatar
WTY
理性思考,和平交流
文章
215
标签
0
分类
1
Follow Me
目录
  1. 1. title: DFS ordercategories: - ICPCtags: - nullabbrlink: ac1f1f56date: 2024-05-02 00:00:00
  • DFS order
  • 最新文章
    贪心
    贪心2024-12-22
    Z_exkmp
    Z_exkmp2024-12-21
    Codeforces Round 895 (Div. 3)
    Codeforces Round 895 (Div. 3)2024-12-16
    可持久化字典树(Trie)
    可持久化字典树(Trie)2024-12-16
    网格图上问题
    网格图上问题2024-12-15
    ©2022 - 2025 By WTY
    框架 Hexo|主题 Butterfly
    Copyright 爱飞鱼
    搜索
    数据加载中