Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Old-Second committed Jan 26, 2024
1 parent 8e4c9e2 commit 0cc00d3
Show file tree
Hide file tree
Showing 22 changed files with 71 additions and 182 deletions.
2 changes: 1 addition & 1 deletion docs/.vitepress/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ export default {
items: [
{text: '哈希', link: '/字符串/哈希'},
{text: '字典树', link: '/字符串/字典树'},
{text: 'KMP', link: '/字符串/kmp'},
{text: 'KMP', link: '/字符串/KMP'},
{text: 'AC自动机', link: '/字符串/AC自动机'},
]
},
Expand Down
16 changes: 2 additions & 14 deletions docs/关于我们.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
---
title: 关于我们
---

### 协会工作

对学生进行程序设计、算法、数据结构、数学等方向的培训,并选拔优秀同学加入协会,参加省级、国家级程序设计竞赛和算法竞赛。
Expand Down Expand Up @@ -89,17 +90,4 @@ title: 关于我们

每年10~12月份举办国赛,国赛分为数个赛站,每个人每一年最多参加两场比赛。

![](https://s2.loli.net/2023/10/19/8X7GdNePF9sEKx1.png)













![](https://s2.loli.net/2023/10/19/8X7GdNePF9sEKx1.png)
8 changes: 6 additions & 2 deletions docs/动态规划/17.区间dp.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
---
title: 区间DP
titleTemplate: 动态规划
---

### 区间DP

动态规划题目灵活,状态定义形式多变,但还是有几种有一些讨论可以遵循的
Expand Down Expand Up @@ -83,5 +88,4 @@ for(int l=1,r=n;r<2*n;++l,++r) ans=max(ans,dp[l][r]);

[P4170 [CQOI2007] 涂色 ](https://www.luogu.com.cn/problem/P4170)

[P1220 关路灯 ](https://www.luogu.com.cn/problem/P1220)

[P1220 关路灯 ](https://www.luogu.com.cn/problem/P1220)
26 changes: 6 additions & 20 deletions docs/动态规划/19.树形dp.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
---
title: 树上DP
titleTemplate: 动态规划
---

### 树上DP

前置知识:图与树入门、动态规划
Expand Down Expand Up @@ -218,23 +223,4 @@ void dfs2(int now,int fa)
[P2986 [USACO10MAR] Great Cow Gathering G ](https://www.luogu.com.cn/problem/P2986)
[P6419 [COCI2014-2015#1] Kamp ](https://www.luogu.com.cn/problem/P6419)
[P6419 [COCI2014-2015#1] Kamp ](https://www.luogu.com.cn/problem/P6419)
5 changes: 5 additions & 0 deletions docs/动态规划/20.状压dp.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
---
title: 状压DP
titleTemplate: 动态规划
---

## 状压DP

### 状态压缩
Expand Down
1 change: 1 addition & 0 deletions docs/协会成果.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
title: 协会成果
outline: [ 1,2 ]
---

# 2023

## ICPC
Expand Down
18 changes: 6 additions & 12 deletions docs/图论/18.图与树入门.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
---
title: 图与树入门
titleTemplate: 图论
---

###

树是一种特殊(简化)的图
Expand Down Expand Up @@ -201,15 +206,4 @@ void dfs(int now)
[P2052 [NOI2011] 道路修建 ](https://www.luogu.com.cn/problem/P2052)
[P3915 树的分解](https://www.luogu.com.cn/problem/P3915)
[P3915 树的分解](https://www.luogu.com.cn/problem/P3915)
28 changes: 6 additions & 22 deletions docs/图论/图论相关概念.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
---
title: 图论相关概念
titleTemplate: 图论
---

## 图论

二次元眼里的图论:
Expand Down Expand Up @@ -273,25 +278,4 @@ $m\leq n-1$ 的且不存在环的图。
#### 团
选择一些点,使得这些点两两之间都有边连接。
选择一些点,使得这些点两两之间都有边连接。
18 changes: 6 additions & 12 deletions docs/字符串/AC自动机.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
---
title: AC自动机
titleTemplate: 字符串
---

## AC自动机

前置芝士:$Trie$ 树,$kmp$。
Expand Down Expand Up @@ -178,15 +183,4 @@ int query(string t)
[P2444 [POI2000] 病毒 ](https://www.luogu.com.cn/problem/P2444)
[P2414 [NOI2011] 阿狸的打字机 ](https://www.luogu.com.cn/problem/P2414)
[P2414 [NOI2011] 阿狸的打字机 ](https://www.luogu.com.cn/problem/P2414)
8 changes: 6 additions & 2 deletions docs/字符串/kmp.md → docs/字符串/KMP.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
---
title: KMP
titleTemplate: 字符串
---

## KMP

### 字符串匹配
Expand Down Expand Up @@ -261,5 +266,4 @@ for(int i=1;i<=n;++i)

[P2375 [NOI2014] 动物园 ](https://www.luogu.com.cn/problem/P2375)

[Prefix Function Queries ](https://www.luogu.com.cn/problem/CF1721E)

[Prefix Function Queries ](https://www.luogu.com.cn/problem/CF1721E)
14 changes: 6 additions & 8 deletions docs/字符串/哈希.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
---
title: 哈希
titleTemplate: 字符串
---

### 映射

哈希算法广义来看是将一个难以表示的信息(比如字符串)和一个容易表示的信息(比如数字)建立一种映射关系。
Expand Down Expand Up @@ -120,11 +125,4 @@ $hash(t)=\sum_{i=1}^mt[i]*base^{m-i}$

[1462:Antisymmetry](http://ybt.ssoier.cn:8088/problem_show.php?pid=1462)

[P2757 [国家集训队] 等差子序列 ](https://www.luogu.com.cn/problem/P2757) 需要线段树







[P2757 [国家集训队] 等差子序列 ](https://www.luogu.com.cn/problem/P2757) 需要线段树
24 changes: 6 additions & 18 deletions docs/字符串/字典树.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
---
title: 字典树
titleTemplate: 字符串
---

### 字典树

又称 $trie$ 树
Expand Down Expand Up @@ -122,21 +127,4 @@ void add(int p)

[P5149 会议座位 ](https://www.luogu.com.cn/problem/P5149)

[P6824 「EZEC-4」可乐 ](https://www.luogu.com.cn/problem/P6824)

















[P6824 「EZEC-4」可乐 ](https://www.luogu.com.cn/problem/P6824)
10 changes: 2 additions & 8 deletions docs/数学/扩展欧几里得.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
title: 扩展欧几里得
titleTemplate: 数学
---

## 不定方程

### 裴蜀定理
Expand Down Expand Up @@ -94,11 +95,4 @@ int exgcd(int a,int b,int &x,int &y)
[P1082 [NOIP2012 提高组] 同余方程 ](https://www.luogu.com.cn/problem/P1082)
[P2421 [NOI2002] 荒岛野人 ](https://www.luogu.com.cn/problem/P2421)
[P2421 [NOI2002] 荒岛野人 ](https://www.luogu.com.cn/problem/P2421)
1 change: 1 addition & 0 deletions docs/数学/数论基础.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
title: 数论基础
titleTemplate: 数学
---

## 数论基础

尽量不用奇怪的符号
Expand Down
14 changes: 2 additions & 12 deletions docs/数学/最大公约数.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
title: 最大公约数
titleTemplate: 数学
---

## 最大公约数

### 最大公约数与最小公倍数
Expand Down Expand Up @@ -105,15 +106,4 @@ $$

[P1072 [NOIP2009 提高组] Hankson 的趣味题 ](https://www.luogu.com.cn/problem/P1072)

[公因子](https://ac.nowcoder.com/acm/contest/6112/C )











[公因子](https://ac.nowcoder.com/acm/contest/6112/C )
1 change: 1 addition & 0 deletions docs/数学/置换.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
title: 置换
titleTemplate: 数学
---

## 置换

### 置换
Expand Down
32 changes: 1 addition & 31 deletions docs/数据结构/树状数组.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ title: 树状数组
titleTemplate: 数据结构
---


### 树状数组

#### 前缀和
Expand Down Expand Up @@ -143,33 +142,4 @@ for(int i=1;i<=n;++i)

[P2345 [USACO04OPEN] MooFest G ](https://www.luogu.com.cn/problem/P2345)

[P4868 Preprefix sum ](https://www.luogu.com.cn/problem/P4868)





























[P4868 Preprefix sum ](https://www.luogu.com.cn/problem/P4868)
1 change: 1 addition & 0 deletions docs/杂项/对顶栈.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
title: 对顶栈
titleTemplate: 杂项
---

### 前置节点

STL
Expand Down
1 change: 1 addition & 0 deletions docs/语法入门/1.语法入门.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
title: 语法入门
titleTemplate: 语法入门
---

## 欢迎来到算法的世界

### 0.安装编译器
Expand Down
Loading

0 comments on commit 0cc00d3

Please sign in to comment.