ACM

UVa 437 The Tower of Babylon

此页面通过工具从 csdn 导出,格式可能有问题。 好久不水 开始深入算法了。 题目传送门 题目其实很简单,暴搜都可以,网上最多的解法都是记忆化搜索,效率应该

UVa 10129 Play on Words

此页面通过工具从 csdn 导出,格式可能有问题。 好久不写代码果然手会生成屎 题目在 poj上也有 题意就是给你一堆单词,按首位顺序排列起来,问你有没有解。

POJ 1017 Packets 悼念死去的模拟

此页面通过工具从 csdn 导出,格式可能有问题。 题目链接 题目很水,纯模拟 麻烦的地方在于,会面临多次用小件填充大件剩余。 最开始觉得不同大小时决策不一样

POJ 1273 Drainage Ditches 网络流模版

此页面通过工具从 csdn 导出,格式可能有问题。 题目传送门 网络流模版题,本想水一水,莫想到因为没好好看题给跪了。 题目大意就是 给你一堆水洼地,还有一些

POJ 3321 Apple Tree dfs序的应用

此页面通过工具从 csdn 导出,格式可能有问题。 题目链接 dfs序 说来很简单,却从来没有想到过。必须得深刻反省一下到底自己学了些啥。 题目大意是给你一棵

POJ 3461 Oulipo KMP练习

此页面通过工具从 csdn 导出,格式可能有问题。 题目链接 题目很长,其实就是字符串匹配。 所以,权当练习 KMP #include <cstdio> #include <cstring> #define MB 10101 #define MA 1000100 char a[MA],b[MB]; int next[MB]; void prekmp(char* b) { next[0]=-1; int j=-1; for (

USACO Section 1.4.3 The Clocks

此页面通过工具从 csdn 导出,格式可能有问题。 题目 The Clocks IOI'94 - Day 2 Consider nine clocks arranged in a 3x3 array thusly: |-------| |-------| |-------| | | | | | | | |---O | |---O | | O | | | | | | | |-------| |-------| |-------| A B C |——-| |——-| |——-| |

POJ 3041 Asteroids 匈牙利算法 二分图最大匹配

此页面通过工具从 csdn 导出,格式可能有问题。 题目链接: http://poj.org/problem?id=3041 看起来像个 DP 神马的。竟然是二分图匹配。。 看着啊,行与行之间相互独立,一个行可以就炸掉很多

ubuntu 安装 HUSTOJ

此页面通过工具从 csdn 导出,格式可能有问题。 安装好 LAMP 环境 方法: http://blog.csdn.net/kzzhr/article/details/12755671 下载 HUSTOJ HUSTOJ 主页 http://code.google.com/p/hustoj/ 我下载了 安装包 install.rxxxx.tar.gz 上传至服务器 #scp -r /home/foo/isntall [email protected]:/var/www 安装中的那些事儿~ install/README 中有详细的

HOJ 2651 PIE

此页面通过工具从 csdn 导出,格式可能有问题。 题目: http://acm.hit.edu.cn/hoj/problem/view?id=2651 很简单的二分枚举, 要注意的是 1、一共是 f+1 个人(包括他自己) 2、精度问题。。被吭了好久,我把面

HDOJ 4152 ZZY’s Dilemma

此页面通过工具从 csdn 导出,格式可能有问题。 题目: http://acm.hdu.edu.cn/showproblem.php?pid=4152 队长大人给某菜鸟赛出的题,但是却让我傻了半天。 裸暴力,由于数据弱,我直接用了位运算标记,其实

ZOJ 3203 Light Bulb

此页面通过工具从 csdn 导出,格式可能有问题。 题目: http://openoj.awaysoft.com:8080/judge/problem/viewProblem.action?id=14179 三分入门题目 三分: 区间上求凸(凹)点时,把区间ad分为 abcd 其中 b = ( a+d) / 2 ; c = ( b + d) / 2; 比

USACO Section 1.3.6 Prime Cryptarithm

此页面通过工具从 csdn 导出,格式可能有问题。 题目 Prime Cryptarithm The following cryptarithm is a multiplication problem that can be solved by substituting digits from a specified set of N digits into the positions marked with *. If the set of prime digits {2,3,5,7} is selected, the cryptarithm is called a PRIME CRYPTARITHM. * * *

USACO Section 1.3.5 Calf Flac

此页面通过工具从 csdn 导出,格式可能有问题。 题目 Calf Flac It is said that if you give an infinite number of cows an infinite number of heavy-duty laptops (with very large keys), that they will ultimately produce all the world's great palindromes. Your job will be to detect these bovine beauties. Ignore punctuation, whitespace, numbers, and

USACO Section 1.3.3 Barn Repair

此页面通过工具从 csdn 导出,格式可能有问题。 题目 Barn Repair It was a dark and stormy night that ripped the roof and gates off the stalls that hold Farmer John's cows. Happily, many of the cows were on vacation, so the barn was not completely full. The cows spend the night in stalls that are arranged

USACO Section 1.3.2 Mixing Milk

此页面通过工具从 csdn 导出,格式可能有问题。 题目 Mixing Milk Since milk packaging is such a low margin business, it is important to keep the price of the raw product (milk) as low as possible. Help Merry Milk Makers get the milk they need in the cheapest possible manner. The Merry Milk Makers company has several

POJ 1088 滑雪

此页面通过工具从 csdn 导出,格式可能有问题。 题目 http://poj.org/problem?id=1088 思路 经典的记忆化搜索:搜索+记忆化 搜索:一个一个找,能滑就滑 记忆化:优化重复的路径,记录每个点

USACO Section 1.2.5 Palindromic Squares

此页面通过工具从 csdn 导出,格式可能有问题。 题目 Palindromic Squares Rob Kolstad Palindromes are numbers that read the same forwards as backwards. The number 12321 is a typical palindrome. Given a number base B (2 <= B <= 20 base 10), print all the integers N (1 <= N <= 300 base 10) such that the

USACO Section 1.2.3 Transformations

此页面通过工具从 csdn 导出,格式可能有问题。 题目 Transformations A square pattern of size N x N (1 <= N <= 10) black and white square tiles is transformed into another square pattern. Write a program that will recognize the minimum transformation that has been applied to the original pattern given the following list of possible

USACO Section 1.2.4 Name That Number

此页面通过工具从 csdn 导出,格式可能有问题。 题目 Name That Number Among the large Wisconsin cattle ranchers, it is customary to brand cows with serial numbers to please the Accounting Department. The cow hands don't appreciate the advantage of this filing system, though, and wish to call the members of their herd by a pleasing name