- 浏览: 316807 次
- 性别:
- 来自: 珠海
最新评论
-
xialluyouyue:
Ubuntu下搭建nodejs+express+mongodb环境简单教程 -
k317544294:
Good 陈迪峰
(开源游戏) DOTA音效版 俄罗斯方块 -
基德KID.1412:
su1216 写道竖线代表或者,不代表替换
对哦~ 谢谢你的提 ...
正则表达式中特殊字符的用法(收藏) -
su1216:
竖线代表或者,不代表替换
正则表达式中特殊字符的用法(收藏) -
qiqijianglu:
基德KID.1412 写道qiqijianglu 写道基德KI ...
【高斯消元 求期望】HDU 4418 Time travel
文章列表
进入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
又一水题……YY的算法//无法用语言表达啊
……感觉飞一般的繁琐!
虽然1次A……但是写代码时感觉很是不爽
/*
ID: 1006100071
PROG: beads
LANG: C++
...
进入USACO要注册才能看题: http://train.usaco.org/usacogate
题目:【翻译版、是别处的网站】http://www.wzoi.org/usaco/13%5C408.asp
SAMPLE INPUT (file transform.in)
3
@-@
---
@@-
@-@
@--
--@
SAMPLE OUTPUT (file transform.out)
1
水题……未能一次A……而且一开始还理解错题意……悲催
/*
ID: 1006100071
PROG: transform
LANG: C++
*/
#include <ios ...
进入USACO要注册才能看题: http://train.usaco.org/usacogate
题目:【翻译版、是别处的网站】http://www.wzoi.org/usaco/13%5C106.asp
SAMPLE INPUT (file dualpal.in)
3 25
SAMPLE OUTPUT (file dualpal.out)
26
27
28
又一水题
/*
ID: 1006100071
PROG: dualpal
LANG: C++
*/
#include <iostream>
#include <fstream>
#in ...
进入USACO要注册才能看题: http://train.usaco.org/usacogate
题目:【翻译版、是别处的网站】http://www.wzoi.org/usaco/11%5C206.asp
SAMPLE INPUT (file namenum.in)
4734
SAMPLE OUTPUT (file namenum.out)
GREG
又被水题虐了!
/*
ID: 1006100071
PROG: namenum
LANG: C++
*/
#include <iostream>
#include <fstream>
#inc ...
进入USACO要注册才能看题: http://train.usaco.org/usacogate
题目:【翻译版、是别处的网站】http://www.wzoi.org/usaco/12%5C501.asp
SAMPLE INPUT (file palsquare.in)
10
SAMPLE OUTPUT (file palsquare.out)
1 1
2 4
3 9
11 121
22 484
26 676
101 10201
111 12321
121 14641
202 40804
212 44944
264 69696 //结果中2个数都要以所给进制输出
水题……但是由于 ...
进入USACO要注册才可看题: http://train.usaco.org/usacogate
题目:【翻译版、是别处的网站】http://www.wzoi.org/usaco/11%5C106.asp
SAMPLE INPUT (file gift1.in)
5
dave
laura
owen
vick
amr
dave
200 3
laura
owen
vick
owen
500 1
dave
amr
150 2
vick
owen
laura
0 2
amr
vick
vick
0 0
SAMPLE OUTPUT (file gift1.out)
dave 302
laura 6 ...
http://acm.hdu.edu.cn/showproblem.php?pid=1717
题意:小数化分数
Sample Input
3
0.(4)
0.5
0.32(692307) //括号里是循环节
Sample Output
4/9
1/2
17/52
众所周知,有限小数是十进分数的另一种表现形式,因此,任何一个有限小数都可以直接写成十分之几、百分之几、千分之几……的数。那么无限小数能否化成分数?
首先我们要明确,无限小数可按照小数部分是否循环分成两类:无限循环小数和无限不循环小数。无限不循环小数不能化分数,这在中学已经得到详尽的解释
无限循环小数是可以 ...
http://poj.org/problem?id=2271
题意:给你HTML代码,翻译出来
要点:
①每行长度不得超过80
②HTML标签只有2个
<br>:换行
<hr>:换行【若本来就在开头不用先换行】再输出80个'-',接着换行
③最后要换行
Sample Input
Hallo, dies ist eine
ziemlich lange Zeile, die in Html
aber nicht umgebrochen wird.
<br>
Zwei <br> <br> produzieren zwei Newline ...
http://acm.hdu.edu.cn/showproblem.php?pid=2136
题意:求出n的最大素数因子的位置
Sample Input
1
2
3
4
5
Sample Output
0
1
2
1
3
#include <iostream>
using namespace std;
#define maxs 1000001
bool prime[maxs];
int res[maxs]; //res[j]存放j的最大素数因子的位置,即答案
int main()
{
int i, j, count = 1; //c ...
http://acm.hdu.edu.cn/showproblem.php?pid=2087
Problem Description
一块花布条,里面有些图案,另有一块直接可用的小饰条,里面也有一些图案。对于给定的花布条和小饰条,计算一下能从花布条中尽可能剪出几块小饰条来呢?
Input
输入中含有一些数据,分别是成对出现的花布条和小饰条,其布条都是用可见ASCII字符表示的,可见的ASCII字符有多少个,布条的花纹也有多少种花样。花纹条和小饰条不会超过1000个字符长。如果遇见#字符,则不再进行工作。
Output
输出能从花纹布中剪出的最多小饰条个数,如果一块都没有,那就老老实实输出0 ...
函数:itoa(a,b,10);
功能:把a的值的10进制放到字符串b里;
#include <iostream>
using namespace std;
int main()
{
char str[11];
int i;
cin >> i;
itoa (i,str,10);
cout << str << endl;
return 0;
}
备注:不是所有编译器都可用!
函数:atoi(str);
功能:将str转成整数并返回
#include & ...
图片链接去边框:
a img {
border: none;
}
添加背景音乐:
<EMBED src="文件路径.mp3" autostart="true" loop="true" width="10%" height="10%" hidden="true">
按钮动画:
<html>
<head>
<script type="text/javascript">
function ...
http://acm.hdu.edu.cn/showproblem.php?pid=1087
题意:求递增段最大和
状态转移方程:dp[j] = max(dp[j], dp[i]+v[j])【前提v[j]>v[i], 构成递增】
其中j>i, dp[i]是前i个中的最优状态, v[j]是j的价值
#include <iostream>
using namespace std;
int dp[1005], value[1005];
int main()
{
int n, i, j, maxs;
while (cin >> n, n ...
http://acm.hdu.edu.cn/showproblem.php?pid=1501
题意:问第三个串是否能够拆成前2个串,字母顺序不可更改
Sample Input
3
cat tree tcraete
cat tree catrtee
cat tree cttaree
Sample Output
Data set 1: yes
Data set 2: yes
Data set 3: no
记忆化搜索
#include <iostream>
using namespace std;
bool flag, hash[205][205];
int le ...
http://acm.hdu.edu.cn/showproblem.php?pid=1258
题意:给你一个数t作为最后等式的和,再给你n个数作为等式的加数,每个加数最多只能使用一次,要求输出所有满足条件(加数从大到小输出)的等式,并且不能重复
Sample Input
4 6 4 3 2 2 1 1
5 3 2 1 1
400 12 50 50 50 50 50 50 25 25 25 25 25 25
0 0
Sample Output
Sums of 4:
4
3+1
2+2
2+1+1
Sums of 5:
NONE
Sums of 400:
50+50+50+50+50+50+2 ...