码迷,mamicode.com
首页 >  
搜索关键字:ikkis problem    ( 37569个结果
poj 1699 Best Sequence
http://poj.org/problem?id=1699题意:给你n个长度为L的序列,求包含这几个序列的最短长度。先预处理每两个序列之间的关系,然后dfs枚举就行。 1 #include 2 #include 3 #include 4 #define maxn 500 5 using na...
分类:其他好文   时间:2014-06-04 16:34:14    阅读次数:255
poj 3071 Football
http://poj.org/problem?id=3071概率dp,dp[i][j]表示第i次比赛,第j支队伍胜出的概率。 1 #include 2 #include 3 #include 4 #define maxn 1000 5 using namespace std; 6 7 dou...
分类:其他好文   时间:2014-06-02 19:10:37    阅读次数:251
poj 3070 Fibonacci
http://poj.org/problem?id=3070矩阵的快速幂,二分 1 #include 2 #include 3 #include 4 #define maxn 10000 5 using namespace std; 6 const int mod=10000; 7 8 in...
分类:其他好文   时间:2014-06-02 19:07:56    阅读次数:304
HDU1342 Lotto 【深搜】
Lotto Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others) Total Submission(s): 1411    Accepted Submission(s): 697 Problem Description In a Lotto I have eve...
分类:其他好文   时间:2014-06-02 18:52:53    阅读次数:396
poj 3318 Matrix Multiplication
http://poj.org/problem?id=3318矩阵A*矩阵B是否等于矩阵C 1 #include 2 #include 3 #include 4 #include 5 #define maxn 1010 6 using namespace std; 7 8 int a[max...
分类:其他好文   时间:2014-06-02 18:18:49    阅读次数:255
hdu 1086 You can Solve a Geometry Problem too (几何)
You can Solve a Geometry Problem tooTime Limit: 2000/1000 MS (Java/Others)Memory Limit: 65536/32768 K (Java/Others)Total Submission(s): 6932Accepted S...
分类:其他好文   时间:2014-06-02 12:40:04    阅读次数:325
HDU1306 String Matching 【暴力】
String Matching Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others) Total Submission(s): 847    Accepted Submission(s): 434 Problem Description It's easy to...
分类:其他好文   时间:2014-06-02 05:30:32    阅读次数:237
HDU2206 IP的计算 【经典题】
IP的计算 Time Limit: 3000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others) Total Submission(s): 7479    Accepted Submission(s): 1457 Problem Description 在网络课程上,我学到了很多有关IP的知识...
分类:其他好文   时间:2014-06-02 05:27:52    阅读次数:176
HDOJ1172 猜数字 【暴力枚举】
猜数字 Time Limit: 20000/10000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others) Total Submission(s): 2483    Accepted Submission(s): 1443 Problem Description 猜数字游戏是gameboy最喜欢的游戏之...
分类:其他好文   时间:2014-06-02 04:37:15    阅读次数:237
poj3126
题目链接: http://poj.org/problem?id=3126 题目: Prime Path Time Limit: 1000MS   Memory Limit: 65536K Total Submissions: 10737   Accepted: 6110 Description The ministers of...
分类:其他好文   时间:2014-06-02 02:21:22    阅读次数:228
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!