-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
79 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
{ | ||
"files.associations": { | ||
"iostream": "cpp" | ||
"iostream": "cpp", | ||
"ostream": "cpp" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,84 @@ | ||
# 历年 CSP 真题代码 | ||
持续更新历年 CSP 真题题解 | ||
# 历年 CCF-CSP 真题代码 | ||
持续更新历年 CCF-CSP 真题题解 | ||
|
||
[算法模板](https://github.com/qzylalala/Algorithm-template) | ||
|
||
来 [官网](https://csp.ccf.org.cn/csp/index.action) 刷题 | ||
|
||
来 [Acwing](https://www.acwing.com/activity/content/39/) 看题解 | ||
|
||
欢迎 star | ||
|
||
|
||
### 知识点统计 | ||
|
||
```markdown | ||
1. 状态压缩DP | ||
202012-4 | ||
201409-5 | ||
|
||
2. 线段树 | ||
202012-5 | ||
201912-5 | ||
201709-5 | ||
201609-5 | ||
|
||
3. 计算几何 | ||
202009-4 | ||
|
||
4. AC自动机 | ||
202009-5 | ||
201509-5 | ||
|
||
5. 状态机DP | ||
202009-5 | ||
201509-5 | ||
201312-4 | ||
|
||
6. 矩阵乘法,快速幂 | ||
202006-4 | ||
201512-5 | ||
|
||
7. 网络流 | ||
202006-5 | ||
201812-5 | ||
201703-5 | ||
201412-5 | ||
|
||
8. 可持久化链表 | ||
201912-4 | ||
|
||
9. 多路归并 | ||
201906-4 | ||
|
||
10. 树型DP | ||
201906-5 | ||
201503-4 | ||
|
||
11. 最短路 | ||
201903-5 | ||
201806-4 | ||
201712-4(拆点) | ||
201609-4 | ||
|
||
12. 最小生成树 | ||
201812-4 | ||
201703-4 | ||
201412-4 | ||
|
||
13. 点分治 | ||
201803-5 | ||
201503-5 | ||
|
||
14. 区间DP | ||
201612-4 | ||
|
||
15. 连通性DP | ||
201604-5 | ||
|
||
16. 欧拉路径 | ||
201512-4 | ||
|
||
17. 强连通分量 | ||
201509-4(tarjan) | ||
``` | ||
|