码迷,mamicode.com
首页 >  
搜索关键字:calculate prime s    ( 3428个结果
使用cublas 矩阵库函数实现矩阵相乘
2014-08-10cublas中执行矩阵乘法运算的函数首先要注意的是cublas使用的是以列为主的存储方式,和c/c++中的以行为主的方式是不一样的。处理方法可参考下面的注释代码// SOME PRECAUTIONS:// IF WE WANT TO CALCULATE ROW-MAJOR MAT...
分类:其他好文   时间:2014-08-10 21:15:10    阅读次数:718
nyoj CO-PRIME 莫比乌斯反演
CO-PRIME时间限制:1000ms | 内存限制:65535KB难度:3描述This problem is so easy! Can you solve it?You are given a sequence which contains n integers a1,a2……an, your t...
分类:其他好文   时间:2014-08-10 10:18:40    阅读次数:250
NYOJ 1066 CO-PRIME(数论)
CO-PRIME 时间限制:1000 ms  |  内存限制:65535 KB 难度:3 描述 This problem is so easy! Can you solve it? You are given a sequence which contains n integers a1,a2……an, your task is to find how man...
分类:其他好文   时间:2014-08-09 18:46:38    阅读次数:244
CF#260 B. Fedya and Maths
Fedya studies in a gymnasium. Fedya's maths hometask is to calculate the following expression: (1n?+?2n?+?3n?+?4n) mod 5 for given value of n. Fedya managed to complete the task. Can you? Note tha...
分类:其他好文   时间:2014-08-09 11:47:07    阅读次数:404
Number Sequence(杭电1005)
/*Number Sequence Problem Description A number sequence is defined as follows: f(1) = 1, f(2) = 1, f(n) = (A * f(n - 1) + B * f(n - 2)) mod 7. Given A, B, and n, you are to calculate the value of ...
分类:其他好文   时间:2014-08-08 21:29:16    阅读次数:386
POJ2728 最小比率生成树/0-1分数规划/二分/迭代(迭代不会)
用01分数规划 + prime + 二分 竟然2950MS惊险的过了QAQ前提是在TLE了好几次下过的 = =题目意思:有n个村庄,村庄在不同坐标和海拔,现在要对所有村庄供水,只要两个村庄之间有一条路即可,建造水管距离为坐标之间的欧几里德距离,费用为海拔之差,现在要求方案使得费用与距离的比值最小,很...
分类:其他好文   时间:2014-08-08 12:27:35    阅读次数:315
POJ 3292 Semi-prime H-numbers(数)
题意 所有可以表示为4*k+1(k>=0)的数都称为“H数” 而在所有“H数”中只能被1和自身整除的H数称为“H素数“ 能表示成两个”H素数“积的数又称为”Semi-prime H数“ 输入n 求1到n之间有多少个”Semi-prime H数“; 方法 先打个H素数表 再用H素数表中的数依次相乘 得到的数都标记 再用一个数组保存每个数以内的标记数 输入n后直接读数组就行了...
分类:其他好文   时间:2014-08-07 23:11:35    阅读次数:265
POj 3126 Prime Path
来源:http://poj.org/problem?id=3126 Prime Path Time Limit: 1000MS   Memory Limit: 65536K Total Submissions: 11384   Accepted: 6453 Description The minister...
分类:其他好文   时间:2014-08-07 13:19:20    阅读次数:320
zoj 3772 Calculate the Function
http://acm.zju.edu.cn/onlinejudge/showProblem.do?problemId=5235这道题需要构造矩阵:F(X)=F(X-1)+F(X-2)*A(X)转化为F(X)*A(X+2)+F(X+1)=F(X+2),然后在构造矩阵{1, A[x]} {F(x+1)}...
分类:其他好文   时间:2014-08-07 12:44:10    阅读次数:229
poj 2689 Prime Distance 【数论】【筛法求素数】
筛法求素数扩展 经典题目...
分类:其他好文   时间:2014-08-06 19:17:02    阅读次数:275
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!