01 2015 档案
摘要:题目链接:http://acm.nyist.net/JudgeOnline/problem.php?pid=68 看的大神的解析:http://blog.csdn.net/sjl_leaf/article/details/8789785 #include<stdio.h> #include<stri
阅读全文
摘要:题目链接:http://acm.nyist.net/JudgeOnline/problem.php?pid=125 题目不经过自己调试ac的不算ac.... #include<stdio.h> #include<string.h> int main(){ int n,m; int i,j,k,t,a
阅读全文
摘要:题目链接:http://acm.nyist.net/JudgeOnline/problem.php?pid=469 规律题,找到规律的话就不难了,但是找不到规律的话就不知道从何下手了。。。。。。 #include<stdio.h> #include<string.h> int main(){ int
阅读全文
摘要:题目链接:http://acm.nyist.net/JudgeOnline/problem.php?pid=914 二分法加贪心,不理解的可以上网上搜大神的。。。。。。 代码: #include<stdio.h> #include<string.h> #include<algorithm> usin
阅读全文
摘要:题目链接:http://acm.nyist.net/JudgeOnline/problem.php?pid=524 对字符串进行比较的一道题目 #include<stdio.h> #include<string.h> char str1[120],str2[120]; int havepoint(c
阅读全文
摘要:题目链接:http://acm.nyist.net/JudgeOnline/problem.php?pid=16 有好几天都没有做题目了,本来自己就太弱,还不勤加练习,沉沦了一段时间,想想还是做题好 ,那样的话,充实 这道题目用的是动态,感觉之前好像做过 代码: #include<stdio.h>
阅读全文