#include<iostream>#include<cstdio>#include<string>#include<cstring>#include<vector>#include<queue>#include<stack>#include<algorithm>#include<cmath>#de ...
分类:
其他好文 时间:
2018-05-12 22:28:38
阅读次数:
158
/* qq:1239198605 ctgu_yyf */#include<iostream>#include<cstdio>#include<string>#include<vector>#include<queue>#include<stack>#include<algorithm>#includ ...
分类:
其他好文 时间:
2018-05-12 22:28:23
阅读次数:
178
XiaoMing likes mathematics, and heis just learning how to convert numbers between different bases , but he keeps making errorssince he is only 6 years ...
分类:
其他好文 时间:
2018-05-10 19:59:55
阅读次数:
206
E.complete number 完数是指一个整数的因子和等于这个数本身,例如6=1+2+3,所以6是一个完数。 按照给定数据范围,找出期中所有完数并输出。 数据范围N,即指在1~N之间寻找完数 完数序列 6 28 ...
分类:
其他好文 时间:
2018-05-08 14:43:03
阅读次数:
173
XiaoMing likes mathematics, and heis just learning how to convert numbers between different bases , but he keeps making errorssince he is only 6 years ...
分类:
其他好文 时间:
2018-05-06 14:53:41
阅读次数:
194
题目链接: http://acm.nyist.edu.cn/JudgeOnline/problem.php?pid=36 最长公共子序列 时间限制:3000 ms | 内存限制:65535 KB 难度:3 最长公共子序列 时间限制:3000 ms | 内存限制:65535 KB 难度:3 ...
分类:
其他好文 时间:
2018-05-06 12:17:04
阅读次数:
175
题目链接: http://acm.nyist.edu.cn/JudgeOnline/problem.php?pid=44 子串和 时间限制:5000 ms | 内存限制:65535 KB 难度:3 子串和 时间限制:5000 ms | 内存限制:65535 KB 难度:3 ...
分类:
其他好文 时间:
2018-05-06 12:15:34
阅读次数:
188
题目链接: http://acm.nyist.edu.cn/JudgeOnline/problem.php?pid=171 分析: kk每次只能向右边和下边走,所以取他的上面和左边的最大值加上自己 dp[i][j]=f_max(dp[i-1][j],dp[i][j-1])+a[i][j]; 代码如下 ...
分类:
其他好文 时间:
2018-05-05 17:18:30
阅读次数:
178
信道安全 时间限制:1000 ms | 内存限制:65535 KB 难度:2 信道安全 时间限制:1000 ms | 内存限制:65535 KB 难度:2 ...
分类:
其他好文 时间:
2018-05-05 11:54:21
阅读次数:
173
Supermarket 时间限制:1000 ms | 内存限制:65535 KB 难度:4 Supermarket 时间限制:1000 ms | 内存限制:65535 KB 难度:4 A supermarket has a set Prod of products on sale. It earns ...
分类:
其他好文 时间:
2018-05-05 01:04:55
阅读次数:
188