- 22 Jul 2014
POJ 1083 Moving Tables
题目 源地址: http://poj.org/problem?id=1083 理解 题目不难,关键在于理解题意。开一个数组,求出每一张桌子移... - 22 Jul 2014
POJ 1146 ID Codes
题目 源地址: http://poj.org/problem?id=1146 理解 使用STL里面的next_permutation轻松水掉... - 22 Jul 2014
POJ 1068 Parencodings
题目 源地址: http://poj.org/problem?id=1068 理解 模拟栈操作,主要是对题目意思的理解。 代码 #inclu... - 22 Jul 2014
POJ 2492 A Bug's Life
题目 源地址: http://poj.org/problem?id=2492 理解 当初学习并查集的时候做得题目,是一个比较经典的关于并查集... - 22 Jul 2014
POJ 1988 Cube Stacking
题目 源地址: http://poj.org/problem?id=1988 理解 这道题也想了很久。问题主要出在堆叠得过程中,我只考虑了根... - 22 Jul 2014
POJ 1703 Find them, Catch them
题目 源地址: http://poj.org/problem?id=1703 理解 这个并查集有点不一样,之前做过的全都是判断是否连通,这一... - 22 Jul 2014
POJ 1308 Is It A Tree?
题目 源地址: http://poj.org/problem?id=1308 理解 同样是并查集的应用,难点在于如何判断给定的点之间是否形成... - 22 Jul 2014
POJ 2524 Ubiquitous Religions
题目 源地址: http://poj.org/problem?id=2524 理解 POJ上最简单的一道关于并查集的题目,没有使用路径压缩,... - 22 Jul 2014
POJ 1082 食物链
题目 源地址: http://poj.org/problem?id=1082 理解 理解时候的困难在于如何把题目中吃与被吃的关系用一个计算机... - 21 Jul 2014
POJ 1046 Color Me Less
题目 源地址: http://poj.org/problem?id=1046 理解 题目并不难,暴力水过即可。用到了结构体的知识,可惜我对结...