本月博客排行
-
第1名
龙儿筝 -
第2名
lerf -
第3名
fantaxy025025 - johnsmith9th
- zysnba
- xiangjie88
年度博客排行
-
第1名
青否云后端云 -
第2名
宏天软件 -
第3名
gashero - wy_19921005
- vipbooks
- benladeng5225
- e_e
- wallimn
- javashop
- ranbuijj
- fantaxy025025
- jickcai
- zw7534313
- qepwqnp
- 解宜然
- ssydxa219
- zysnba
- sichunli_030
- sam123456gz
- 龙儿筝
- arpenker
- tanling8334
- kaizi1992
- gaojingsong
- xpenxpen
- jh108020
- wiseboyloves
- ganxueyun
- xyuma
- xiangjie88
- wangchen.ily
- Jameslyy
- luxurioust
- lemonhandsome
- jbosscn
- mengjichen
- zxq_2017
- lzyfn123
- nychen2000
- forestqqqq
- wjianwei666
- ajinn
- zhanjia
- Xeden
- hanbaohong
- java-007
- 喧嚣求静
- kingwell.leng
- mwhgJava
- lich0079
最新文章列表
HDU 2072 单词数
http://acm.hdu.edu.cn/showproblem.php?pid=2072
set以及string的一点应用
#include <iostream>
#include <fstream>
#include <algorithm>
#include <string>
#include <set>
//#in ...
【欧拉函数】POJ 2407 Relatives
http://poj.org/problem?id=2407
题意:求少于或等于n的数中与n互质的数的数目。(n不大于10亿)
Sample Input
7
12
0
Sample Output
6
4
欧拉函数
在数论,对正整数n,欧拉函数是少于或等于n的数中与n互质的数的数目。此函数以其首名研究者欧拉命名,它又称为Euler's totient function、φ函数、欧拉商数等。 ...
hud 1251 统计难题
统计难题
Time Limit: 4000/2000 MS (Java/Others) Memory Limit: 131070/65535 K (Java/Others)Total Submission(s): 6113 Accepted Submission(s): 2272
Problem Description
Ignatius最近遇到一个难题,老师交给他很多单词( ...
Emergent escape
Emergent escape
Time Limit : 3000/1000ms (Java/Other)
Memory Limit : 65535/32768K (Java/Other)
Problem Description
In the year 23XX, spaceship is very popular used in transmission of the univer ...
poj 3675 Telescope
Telescope
链接:http://poj.org/problem?id=3675
题目大意:多边形与圆的相交面积。
刚开始写觉得有很多东西,分很多种情况,要求直线与圆的交点、叉乘、面积等等,但是不断努力写完大概的代码。
经过8个钟的不断的调试debug!!,发现了很多很多问题,更正了很多错误,学到了不少东西。最后这题终于AC了!!!
我的代码如下:
//多边形与圆点相交面积 poj36 ...
Run Length Encoding
游程编码
(Run Length Encoding
) 是一种简单的编码方法,通常用于控制论中对二值图像编码。ACM有一道题目就是关于该编码。见tzu 1149
或poj 1782
。虽然是简单题,我却花了好大功夫才搞定,功力还是不足阿。
程序代码如下:
#include <stdio.h>
#define MAX 1024
int printStr(char ...
【奇妙的数论】HDU 1124 Factorial
http://acm.hdu.edu.cn/showproblem.php?pid=1124
题意:N阶乘有多少个尾0?(1 <= N <= 1000000000)
Sample Input
6 //表示数据个数
3
60
100
1024
23456
8735373
Sample Output
0
14
24
253
5861
2183837
N! = 1 * 2 * 3 ...
【让我悲催的水题】HDU 1070 Milk
http://acm.hdu.edu.cn/showproblem.php?pid=1070
题意:
①:milk最多只能喝5天
②:每天喝200ml
③:如果剩下的小于200ml,就要扔掉
④:所有milk都是今天生产的
⑤:当有多个milk一样便宜时,选择体积最大的
给出商标+1瓶的价格+体积,找出最便宜的那种milk
错了11次灰常悲催
网上很多童鞋都排序了,其实这题根本不用排序……
...
【中国剩余定理】POJ 1006 生理周期
http://poj.org/problem?id=1006&lang=zh-CN&change=true
Sample Input
0 0 0 0
0 0 0 100
5 20 34 325
4 5 6 7
283 102 23 320
203 301 203 40
-1 -1 -1 -1
Sample Output
Case 1: the next triple peak o ...
【KMP】HDU 3336 Count the string
http://acm.hdu.edu.cn/showproblem.php?pid=3336
题意:求字串中【前缀+跟前缀相同的子串】的个数?
Sample Input
1
4
abab
Sample Output
6
abab:包括2个a,2个ab,1个aba,1个abab
这里要用到next值的意义:
next[i]表示前i个字符所组成的字符串的最大前后缀匹配长度
举个例子:
n ...
【模线性方程】POJ 2115 【更新日期2011-11-18】
http://poj.org/problem?id=2115
题意:转化成c * x = b - a mod (2 ^ k),解这个模线性方程的最小正整数解即可
Sample Input
3 3 2 16
3 7 2 16
7 3 2 16
3 4 2 16
0 0 0 0
Sample Output
0
2
32766
FOREVER
解方程:ax == b (mod n);【ax % n ...
【水题】USACO Calf Flac
进入USACO要注册才能看题: http://train.usaco.org/usacogate
题目:【翻译版、是别处的网站】http://www.wzoi.org/usaco/13%5C206.asp
SAMPLE INPUT (file calfflac.in)
Confucius say: Madam, I'm Adam.
SAMPLE OUTPUT (file calfflac.o ...
【水题】USACO Friday the Thirteenth
进入USACO要注册才可看题: http://train.usaco.org/usacogate
题目:【翻译版、是别处的网站】http://www.wzoi.org/usaco/13%5C303.asp
SAMPLE INPUT (file friday.in)
20
SAMPLE OUTPUT (file friday.out)
36 33 34 33 35 35 34
历法中的水题, ...
【水题】USACO Broken Necklace
进入USACO要注册才可看题: http://train.usaco.org/usacogate
题目:【已翻译】http://www.wzoi.org/usaco/11%5C202.asp
SAMPLE INPUT (file beads.in)
29
wwwbbrwrbrbrrbrbrwrwwrbwrwrrb
SAMPLE OUTPUT (file beads.out)
11
又一 ...