发表评论取消回复
相关阅读
相关 pku 1634 Who's the boss? stl排序+二分查找
\include <iostream> \include <algorithm> \include <vector> using namespace std; struct P
相关 pku 1270 Following Orders DFS+拓扑排序
题意很清晰. 可以利用dfs遍历每一组值,然后加上剪枝条件. 由于剪枝可以利用当前节点和已遍历节点的顺序关系,可以使用拓扑排序. 注意: 输入的第一行不一定是有序的,我在
相关 pku 1094 Sorting It All Out 拓扑排序
\include <iostream> \include <stack> using namespace std; int edge\[27\]\[27\]; //图的邻接矩阵
相关 POJ 2001-Shortest Prefixes【字典树】
Shortest Prefixes <table> <tbody> <tr> <td><strong>Time Limit:</strong> 1
相关 pku 2001 Shortest Prefixes 排序
这题我的做法是排序后, 对前一字符串和后一字符串推断出该字符串的最短前缀. 做完看discuss中, 有人说可以用字典树, 我还没用过, 有时间时打算看一下. \inclu
相关 pku 3176
\include<stdio.h> int str\[351\]\[351\]; int main() \{ int n,i,j; // freopen("
相关 1651. Shortest Subchain
1651. Shortest Subchain Time limit: 1.0 second Memory limit: 64 MB ![Problem illustr
相关 poj 2001 Shortest Prefixes(字典树)
题目链接:[http://poj.org/problem?][http_poj.org_problem] id=2001 Description A prefi
相关 Shortest Prefixes 字典树 (前缀树) 入门题 题解
Shortest Prefixes 题解 (1)题目 (2)题解 (1)题目 Shortest Prefixes A pr
相关 POJ 2001 Shortest Prefixes【字典树】题解
目录 1.题目 2.代码 1.题目 A prefix of a string is a substring
还没有评论,来说两句吧...