码迷,mamicode.com
首页 >  
搜索关键字:__int64    ( 879个结果
hdu 2044 一只小蜜蜂
也是道简单递推题,思路和上一道完全一样,要注意的是数组要开__int64输出用“%I64d”,不然会WA。这道题数组是求到50,看来50就超过int了,以后这方面要注意。 1 #include 2 __int64 a[55]; 3 int main() 4 { 5 int i,j,x,y; ...
分类:其他好文   时间:2014-08-05 13:29:09    阅读次数:205
hdoj 1097 A hard puzzle 【找规律】
题目大意:求a^b的最右边的数。 这道题是有规律的 解题报告: http://blog.csdn.net/shengweisong/article/details/38024619  但是注意数据很大,要用64位的整型,被坑了一次。。 题目链接:点击打开链接 代码: #include int main() { __int64 n, m, i; while(scanf("%...
分类:其他好文   时间:2014-08-04 17:50:37    阅读次数:189
hdu4901
题意:有n个数(n#include#includeusing namespace std;typedef __int64 ss;const ss mod=1000000007;int dp[1005][1080],t[1005][1080],n,s[1005],maxn;int p[1005][10...
分类:其他好文   时间:2014-08-03 20:22:25    阅读次数:255
大素数测试和分解质因数
Prime Testhttp://poj.org/problem?id=1811 1 #include 2 #include 3 using namespace std; 4 typedef __int64 LL; 5 LL mulmod(LL a,LL b,LL c) { //ret=(...
分类:其他好文   时间:2014-08-03 20:18:15    阅读次数:245
快速幂
Raising Modulo Numbershttp://poj.org/problem?id=1995快速幂取模 1 #include 2 typedef __int64 LL; 3 LL quickpow(LL a,LL b,LL c){//快速幂求(a^b)%c 4 LL ret=1%...
分类:其他好文   时间:2014-08-03 17:50:35    阅读次数:302
欧拉函数
The Euler functionhttp://acm.hdu.edu.cn/showproblem.php?pid=2824筛法 1 #include 2 #include 3 #define mt(a,b) memset(a,b,sizeof(a)) 4 typedef __int64 LL;...
分类:其他好文   时间:2014-08-03 17:43:45    阅读次数:248
Python Theano TypeError: Cannot convert Type TensorType(float64, vector) (of Variable Subtensor{int64:int64:}.0) into Type TensorType(float64, matrix)
参考:https://groups.google.com/forum/#!topic/theano-users/teA-07wOFpE这个问题出现的原因是,我在读文件的时候,应该Train_X读成matrix(rows * dimensions),Train_Y读成vector(因为只有label一...
分类:编程语言   时间:2014-08-02 01:32:12    阅读次数:553
hdu 1111 Secret Code
http://acm.hdu.edu.cn/showproblem.php?pid=1111复数除法: 1 #include 2 #include 3 #include 4 using namespace std; 5 6 int a[110]; 7 __int64 n; 8 int x1,...
分类:其他好文   时间:2014-08-01 19:10:32    阅读次数:321
hdu 1800 Flying to the Mars(水 ,贪心)
其实就是求最大的相同的数的多少。。 我是把它当字符串输入。。解决前导0的问题。。 #include #include #include #include using namespace std; int main() {     char s[35];     int w[3500];     __int64 qq[3500];     int a;     while(...
分类:其他好文   时间:2014-08-01 16:10:01    阅读次数:193
hdu 4891 The Great Pan (模拟)
为什么要开__int64 巨巨在哪~# include # include # include using namespace std; int main () { __int64 n,i,len,cot,cot1,count,flag,j; char a[1001][1030]; while(~scanf("%d",&n)) { getcha...
分类:其他好文   时间:2014-07-29 21:58:42    阅读次数:276
879条   上一页 1 ... 76 77 78 79 80 ... 88 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!