上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 47 下一页
摘要: 1.运行如下的代码:#include #include int main(){ int a; a=1; int s[4]; memset(s, 0, sizeof(s)); s[a++]=a++; printf("s[0]=%d\n", s[0]); printf... 阅读全文
posted @ 2015-08-27 20:38 我喜欢旅行 阅读(177) 评论(0) 推荐(0) 编辑
摘要: 题目地址:http://poj.org/problem?id=1961Sample Input3aaa12aabaabaabaab0Sample OutputTest case #12 23 3Test case #22 26 29 312 4题目分析:给你一个字符串,最大长度1百万。输出是:以第1... 阅读全文
posted @ 2015-08-27 18:44 我喜欢旅行 阅读(199) 评论(0) 推荐(0) 编辑
摘要: Power StringsTime Limit: 3000MSMemory Limit: 65536KTotal Submissions: 38038Accepted: 15740DescriptionGiven two strings a and b we define a*b to be th... 阅读全文
posted @ 2015-08-22 17:05 我喜欢旅行 阅读(379) 评论(0) 推荐(0) 编辑
摘要: 题目地址:http://poj.org/problem?id=2488Sample Input31 12 34 3Sample OutputScenario #1:A1Scenario #2:impossibleScenario #3:A1B3C1A2B4C2A3B1C3A4B2C4题目:给你一个p... 阅读全文
posted @ 2015-08-22 16:29 我喜欢旅行 阅读(1108) 评论(0) 推荐(0) 编辑
摘要: 题目地址:http://poj.org/problem?id=3414PotsTime Limit: 1000MSMemory Limit: 65536KTotal Submissions: 12080Accepted: 5104Special JudgeDescriptionYou are giv... 阅读全文
posted @ 2015-08-21 19:55 我喜欢旅行 阅读(216) 评论(0) 推荐(0) 编辑
摘要: 转载地址:http://m.blog.csdn.net/blog/u010489766/9229011题目链接:http://poj.org/problem?id=1276题意:机器里面共有n种面额的钱币,每种各ni张,求机器吐出小于等于所要求钱币的最大值解析1:这题大牛都用了多重背包,不过,我一同... 阅读全文
posted @ 2015-08-21 14:48 我喜欢旅行 阅读(451) 评论(0) 推荐(0) 编辑
摘要: 历届试题 打印十字图 时间限制:1.0s 内存限制:256.0MB 题目地址:http://lx.lanqiao.org/problem.page?gpid=T25问题描述小明为某机构设计了一个十字型的徽标(并非红十字会啊),如下所示: 对方同时也需要在电脑dos窗口中以字符的形式输出该标... 阅读全文
posted @ 2015-08-20 21:40 我喜欢旅行 阅读(215) 评论(0) 推荐(0) 编辑
摘要: 题目地址:http://poj.org/problem?id=167923 31 2 12 3 23 1 34 41 2 22 3 23 4 24 1 2Sample Output3Not Unique!次小生成树学习博客:http://blog.csdn.net/niushuai666/artic... 阅读全文
posted @ 2015-08-20 08:54 我喜欢旅行 阅读(229) 评论(0) 推荐(0) 编辑
摘要: 题目地址:http://poj.org/problem?id=2828Sample Input40 771 511 332 6940 205231 192431 38900 31492Sample Output77 33 69 5131492 20523 3890 19243HintThe figu... 阅读全文
posted @ 2015-08-19 10:32 我喜欢旅行 阅读(426) 评论(1) 推荐(0) 编辑
摘要: /* 遇到素数需要打表时,先估算素数的个数: num = n / lnx; num为大概数字,越大误差越小(只是估计,用于估算素数表数组大小) 这个打表法效率貌似很高,网上说几乎达到了线性时间(不知道是真是假=。=) */ #include ... 阅读全文
posted @ 2015-08-18 15:57 我喜欢旅行 阅读(619) 评论(1) 推荐(0) 编辑
上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 47 下一页