题目链接:http://acm.csu.edu.cn/OnlineJudge/problem.php?id=1111
这是道简单的数学题。
#include
int main()
{
int t,z,d;;
float x,y,k,s;
scanf("%d",&t);
int i;
while (t--)
{
sc...
分类:
其他好文 时间:
2014-09-03 18:17:07
阅读次数:
217
题目:HDU4908BestCoder Sequence(组合数学)
题目大意:给出一串数字,要求找妻子...
分类:
其他好文 时间:
2014-09-03 14:58:46
阅读次数:
223
Big Number
Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others)
Total Submission(s): 26003 Accepted Submission(s): 11810
Problem Description
In many applicati...
分类:
其他好文 时间:
2014-09-03 09:43:46
阅读次数:
160
很简单的高中数学题,写出来主要是提醒自己,写完递推公式(尤其是公式)一定要检查多遍。 1 #include 2 #include 3 4 int M; 5 int num; 6 int d[102]; 7 8 int solve(int i) 9 {10 if(d[i]>=0)11 ...
分类:
其他好文 时间:
2014-09-01 20:58:33
阅读次数:
234
题意
求n以内等于两个连续素数的和加上1的数的个数 n不大于1000
#include
#include
#include
using namespace std;
const int N = 1000;
int n, k, ans;
bool isPrime (int a)
{
for (int i = 2; i <...
分类:
数据库 时间:
2014-08-30 13:57:29
阅读次数:
293
??
题意 如果a加上a所有数位上的数等于b时 a称为b的generator 求给定数的最小generator
给的数n是小于100,000的 考虑到所有数位和最大的数99,999的数位和也才45 因此我们只需要从n-45到n枚举就行了
#include
#include
using namespace std;
int t, n, a, b, ans, l;...
分类:
其他好文 时间:
2014-08-30 09:59:39
阅读次数:
192
题目链接:http://acm.nyist.net/JudgeOnline/problem.php?pid=291 http://acm.nyist.net/JudgeOnline/problem.php?pid=333思路:欧拉函数的应用,详解见这里:http://blog.csdn.net/on...
分类:
其他好文 时间:
2014-08-29 17:49:58
阅读次数:
215
题目链接http://acm.hdu.edu.cn/showproblem.php?pid=4861这个题只能说没弄懂,感觉很难,看博客也看不懂,只能,多看几次,看能不能有所突破了。代码的话只有几行,#includeint main(){ int k,p; while(scanf("%d...
分类:
其他好文 时间:
2014-08-28 21:08:36
阅读次数:
229
给出一个数字塔,然后求沿着数字之间的边走,给出两个数字,问其路径最短的长度是多少。看似一条搜索题目,只是有一定做题经验的人都知道,这个不是搜索题,直接搜索肯定超时。这个是依据规律计算的数学题目。我这里的思路是一层一层往下搜,利用层间的规律加速,实现层跃,到了同一层,或者同一个对角列的时候就能够直接计...
分类:
其他好文 时间:
2014-08-28 09:34:39
阅读次数:
156
这里我写了两种验证码,一种是随机生成四位数,还有一种是中文字的数学题加减题,其实就是生成图片上有点不同,别的地方一样。
html代码
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServ...
分类:
其他好文 时间:
2014-08-27 00:25:06
阅读次数:
306