Needed Learning(Updating)
决定把掌握不熟练或是模型见的少的知识点在这里列一列
希望能在自己AFO前成功get技能点吧……
优先级:动态规划-分治-字符串-图论-数据结构-数学-计算几何-其它
动态规划
1、四边形不等式优化
2、斯坦纳树
3、凸优化(例题:林克卡特树)
4、非单调性的斜率优化(维护凸包)
5、插头$dp$
6、动态$dp$
7、笛卡尔树
分治
1、整体二分
2、cdq分治
3、对时间分治
字符串
1、(广义)后缀自动机
2、后缀树
3、LCP
4、最小表示法
5、后缀排序
6、AC自动机
7、回文自动机
8、Z-Algorithm
数据结构
1、FHQ Treap/非旋式Treap
2、替罪羊树
3、KD-Tree
4、可并堆
5、可持久化并查集
6、$LCT$
7、可持久化平衡树
图论相关
1、割点,割边
2、霍尔定理
3、单纯形法/对偶原理
4、Prufer编码
5、欧拉回路相关
6、$Kruskal$重构树
7、边分治,动态树分治
8、DSU ON TREE(启发式合并)
9、ZKW费用流
数学相关
1、FFT/NTT原理
2、BSGS
3、Miller-Rabin/Pollard-rho算法
4、辛普森积分
5、置换群
6、杜教筛
7、生成函数
8、多项式基本操作
9、二项式反演
计算几何
1、格林公式
2、闵科夫斯基和
3、平面反演
4、数据结构维护凸包
5、半平面交
线性代数
1、拟阵
2、多项式算法
3、特征多项式求常系数线性递推
4、Tutte矩阵
其他
1、模拟退火/爬山算法/随机增量法
2、树上莫队
3、朱刘算法
4、弦图
Needed Learning(Updating)的更多相关文章
- Adversarial Examples Improve Image Recognition
Xie C, Tan M, Gong B, et al. Adversarial Examples Improve Image Recognition.[J]. arXiv: Computer Vis ...
- How to rebuild RPM database on a Red Hat Enterprise Linux system?
本文是笔者最近遇到的一个故障的处理过程,解决方案是Rebuild RPM 的DB,后面内容其实是REDHAT官方的solutions,不过我遇到的现象和解决方案都与官方有点出入,故一直帖出来: 我遇到 ...
- Odoo11 重大改变
Table of Contents 新特性 Activity 项目子任务 组织架构 地址 域 widget 功能重构 Quant 份 procurement 补货 自动动作 动作绑定 去掉了stock ...
- What skills are needed for machine learning jobs
What skills are needed for machine learning jobs?机器学习工作必须技能 原文: http://www.quora.com/Machine-Learnin ...
- R8:Learning paths for Data Science[continuous updating…]
Comprehensive learning path – Data Science in Python Journey from a Python noob to a Kaggler on Pyth ...
- Machine Learning for Developers
Machine Learning for Developers Most developers these days have heard of machine learning, but when ...
- (转)Applications of Reinforcement Learning in Real World
Applications of Reinforcement Learning in Real World 2018-08-05 18:58:04 This blog is copied from: h ...
- Ultimate guide to learning AngularJS in one day
What is AngularJS? Angular is a client-side MVC/MVVM framework built in JavaScript, essential for mo ...
- Machine Learning and Data Mining(机器学习与数据挖掘)
Problems[show] Classification Clustering Regression Anomaly detection Association rules Reinforcemen ...
随机推荐
- yii验证系统学习记录,基于yiicms(二)
/** * Validates the specified object. * @param \yii\base\Model $model the data model being validated ...
- ubuntun16.04+cuda9.0+cudnn7+anaconda3+pytorch+anaconda3下py2安装pytorch
一.电脑配置 说明: 电脑配置: LEGION笔记本CPU Inter Core i7 8代GPU NVIDIA GeForce GTX1060Windows10 所需的环境: Anaconda3(6 ...
- Django 创建第一个Project — Django学习(二)
检查django If Django is installed, you should see the version of your installation. If it isn’t, you’l ...
- linux下定时器介绍2--timer_create等函数集的使用示例
程序1:采用新线程派驻的通知方式 程序2:通知方式为信号的处理方式 #include <stdio.h>#include <time.h>#include <stdlib ...
- python基础-类的其他方法
一.isinstance(obj,cls)检查是否obj是类的cls对象 # -*- coding:utf-8 -*- __author__ = 'shisanjun' class Foo(objec ...
- ubuntu 创建容器 并ssh 连接容器
1.下载镜像:docker search ubuntu docker pull ubuntu 2. 创建容器 docker run --name spider_frame -p 8888:8888 - ...
- Centos之链接命令
链接命令:ln (link) ln -s [源文件] [目标文件] 功能描述:生成链接文件 选项: -s 创建软链接 硬链接特征: 1,拥有相同的i节点和存储block块,可以看作是同一个文件: 2 ...
- LeetCode664. Strange Printer
There is a strange printer with the following two special requirements: The printer can only print a ...
- C#socket编程序(二)
在上一篇中,我列了一些常用的方法,可以说这些方法是一些辅助性的方法,对于分析网络中的主机属性非常有用.在这篇中,我将会介绍一下面向连接(TCP)socket编程,其中辅以实例,代码可供下载. 对于TC ...
- centos7 配置ftp访问
vsftp安装 创建用户 并限定用户在自己的目录 1.查看是否已经安装了vsftpd vsftpd -version 2.安装vsftpd(CentOS7) yum install -y vsftpd ...