新增 淘宝群内容

This commit is contained in:
2021-11-08 18:15:49 +08:00
parent a9d7cc2244
commit 5245d7320f
10 changed files with 34 additions and 0 deletions

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 MiB

View File

@@ -0,0 +1,34 @@
##### 一30分
某个点的最短边是否属于某课最小生成树,如果是,请证明。
要求你给出一个求强连通分量的算法,并且证明正确性
网络流的一个割,其中一条边去掉之后,最大流是多少
##### 二20分
给出3SAT问题和Independent Set问题的判定形式并证明Independent Set问题是NP-hard问题
网络流算法中找到增广路径后证明新的流是合法的流量守恒and容量限制
##### 三15分
求单源最长路径要求使用动态规划算法bellman-ford算法即可
伪代码,时间复杂度,思想,动态规划方程
##### 四15分
描述Floyd算法思想给矩阵D0D2 求D1D3理解Floyd算法就会做
##### 五20分
动态规划算法设计:
n个题目每个题目有mi的做题时间和vi的分数
问得到V分数的前提下最少需要多少时间做题假设题目全对
写动规方程算法思路伪代码设计一个时间复杂度为mV的算法
```csharp
应该是能设计出一个时间复杂度为nV的算法,而非mV
```

Binary file not shown.