Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/guodongxiaren/oj


https://github.com/guodongxiaren/oj

Last synced: 25 days ago
JSON representation

Awesome Lists containing this project

README

        

Hello ACM
=========

## 动态规划
### 三要素
* 状态
* 阶段
* 决策

### 分类
* 线性DP
* 树形DP
* ...

### 经典模型
* LCS(最长公共子序列)
* LIS(最长递增子序列)
* 数塔(树形DP)
* 背包