E-COM-NET
首页
在线工具
Layui镜像站
SUI文档
联系我们
推荐频道
Java
PHP
C++
C
C#
Python
Ruby
go语言
Scala
Servlet
Vue
MySQL
NoSQL
Redis
CSS
Oracle
SQL Server
DB2
HBase
Http
HTML5
Spring
Ajax
Jquery
JavaScript
Json
XML
NodeJs
mybatis
Hibernate
算法
设计模式
shell
数据结构
大数据
JS
消息中间件
正则表达式
Tomcat
SQL
Nginx
Shiro
Maven
Linux
int64
【策略】HDOJ-1205-吃糖果
只要除了数目最多的糖果以外的其他所有糖果的数目之和加1(小心这里要用
int64
),大于等于数目最多的糖果数,就能吃完,否则不能。
·
2015-11-07 14:13
OJ
2013 ACM-ICPC长沙赛区全国邀请赛—Special equations
algorithm>#include<iomanip>#include<cmath>#include<string>using namespace std;__
int64
·
2015-11-07 14:51
ICPC
hdu 4279 Number
奇数的平方数+偶数-偶数的平方数,再就是注意1-4全是0…… #include <iostream>#include <cmath>using namespace std;__
int64
·
2015-11-07 14:34
number
hdu 1058 Humble Numbers
通过不断的寻找2^a*3^b*5^c*7^d按顺序的数就可以了…… #include <iostream>#include <cmath>using namespace std;__
int64
·
2015-11-07 14:33
number
hdu 2824 The Euler function
快速求出欧拉函数值……注意数据类型,否则会超时的 #include<iostream>using namespace std;const long MMAX=3000000;__
int64
·
2015-11-07 14:32
function
hdu 1787 GCD Again
简单的欧拉函数…… #include<iostream>using namespace std;typedef __
int64
int64
;//const long mod=1000000007
·
2015-11-07 14:31
HDU
hdu 4556 Stern-Brocot Tree
刚开始不知道怎么做,看了大神的做法后,才知道要用到欧拉函数…… #include<iostream>using namespace std;const int N=1000010;__
int64
·
2015-11-07 14:30
tree
hdu 2971 Tower
2971 3265MS 232K 1105 B C++ #include<iostream>using namespace std;typedef __
int64
·
2015-11-07 14:29
HDU
hdu 3306 Another kind of Fibonacci
联立可得到相关矩阵,再用矩阵2分快速幂就可得到结果了…… #include<iostream>#include<stdio.h>using namespace std;typedef __
int64
·
2015-11-07 14:28
fibonacci
hdu 1588 Gauss Fibonacci
在矩阵的求和中要用到快速2分,采用递归来求…… #include<iostream>#include<stdio.h>using namespace std;typedef __
int64
·
2015-11-07 14:28
fibonacci
2013金山西山居创意游戏程序挑战赛——初赛(2)M斐波那契数列
#include<iostream>#include<stdio.h>using namespace std;typedef __
int64
in;
·
2015-11-07 14:27
游戏
SQL SERVER数据类型与C#数据类型对照表
Int64
·
2015-11-07 13:28
SQL Server
hdu2085 核反应堆
1 #include<stdio.h> 2 int main() 3 { 4 int i,n; 5 __
int64
high,low,k; 6
·
2015-11-07 13:16
HDU
poj3468 A Simple Problem with Integers
1 #include<stdio.h> 2 #define N 100010 3 struct node{ 4 int l,r; 5 __
int64
inc
·
2015-11-07 13:12
Integer
hdu 3709 Balanced Number 数位DP
1 #include<cstdio> 2 #include<cstring> 3 #include<algorithm> 4 #define ll __
int64
·
2015-11-07 10:05
number
uestc 1307 windy数 数位DP
1 #include<cstdio> 2 #include<cstring> 3 #include<algorithm> 4 #define ll __
int64
·
2015-11-07 10:04
dp
hdu 3555 Bomb 数位DP
1 #include<cstdio> 2 #include<cstring> 3 #include<algorithm> 4 #define ll __
int64
·
2015-11-07 10:03
HDU
hdu 3658 How many words
3 #include<cmath> 4 #include<iostream> 5 #include<cstring> 6 #define ll __
int64
·
2015-11-07 10:01
word
hdu 3404 Switch lights 博弈论
;iostream> #include<cstdio> #include<stack> #include<cstring> #define ll __
int64
·
2015-11-07 10:56
switch
CF 197 DIV2 Xenia and Bit Operations 线段树
; 3 #define lson i<<1 4 #define rson i<<1|1 5 #define MAX 140000 6 #define ll __
int64
·
2015-11-07 10:53
Opera
师范大学 e: skyscrapers
> 3 #include<cstring> 4 #include<cstdlib> 5 using namespace std; 6 typedef __
int64
·
2015-11-07 09:01
rap
求N的因子之和。
理论依据: 代码: 1 /* 2 显然,数据够大的时候,数组要用 __
int64
3 4 */ 5 6 #include<iostream>
·
2015-11-07 09:54
HNCU专题训练_线段树(2)
由于T颜色种类最多30种,__
int64
足够用了。注意初始化就行。 5.关键是写对make_up()这个函数,向上更新需要考虑的问题。经典题型。
·
2015-11-07 09:50
线段树
【hdu1024】简单dp
其次,按照题目给的范围完全可能超int,但是数据事实上int远远够了,害得我__
int64
读比读int慢两倍,直接TLE。就是因为TLE的原因,害得我数组初始化没有
·
2015-11-06 07:36
HDU
pku3468 线段树 区间求和
struct node{ int l, r, cover; __
int64
sum; __
int64
key;}st[NN * 8 ];
·
2015-11-03 22:24
线段树
基础专题
1.hdu 1028 Ignatius and the Princess III 整数划分 1 #include<stdio.h> 2 __
int64
dp
·
2015-11-03 21:22
基础
iOS笔记之线程
dispatch_after能让我们添加进队列的任务延时执行,比如想让一个Block在10秒后执行: var time = dispatch_time(DISPATCH_TIME_NOW, (
Int64
·
2015-11-02 19:39
ios
UVA 113 Power of Cryptography
原来double可以存储比__
int64
更大的数 (int)(pow(p, 1.0/n) + 0.5) CODE: #include <iostream>
·
2015-11-02 18:41
Cryptography
ACM 做题过程中的一些小技巧。
2.有时候int型不够用,可以用long long或__
int64
型(两个下划线__)。
·
2015-11-02 18:09
ACM
HDU 2178 猜数字
1 #include<stdio.h> 2 #include<stdlib.h> 3 __
int64
pow( int n ) 4 { 5 __
int64
sum=1;
·
2015-11-02 18:28
HDU
HDU 3049 Data Processing
1000003*N;这样我们就不要担心数据过大的问题; #include<stdio.h>#include<stdlib.h>int main(){ int T,n,x; __
int64
·
2015-11-02 18:16
process
POJ2393 Yogurt factory ——贪心——Pku2393
CODE Program Yogfac;//By_Poetshy Var i,n,m :Longint; re,ans,p,q :
Int64
; BEGIN
·
2015-11-02 17:15
factory
POJ1990 MooFest——树状数组——Pku1990
by_poetshyconst maxn=20000;var i,n :longint; p,m,ans :
int64
·
2015-11-02 17:07
树状数组
卡题小结
各种卡题痛苦挣扎过后,现在来稍微小结一下: 目前找到的卡题原因大概有如下几点: 1: 就是个可恶的输入输出问题,先说long long的,定义一般直接用long long去定义就行(也不知__
int64
·
2015-11-02 17:06
小结
Sumdiv--POJ 1845
*pn^an;公式:(A*B)%C=((A%C)*(B%C))%C;中间值全部用__
int64
表示;利用位运算如:n&1,判断n的奇偶性。
·
2015-11-02 16:05
div
Fence Repair--POJ 3253
2、注意事项:STL中优先队列容器(priority_queue)的应用,定义__
int64
位ans。
·
2015-11-02 16:57
AIR
pku 3067 Japan
需要注意:k<=10^6,最后的结果要用__
int64
存储 归并: # include<stdio.h> # include<string
·
2015-11-02 15:39
pku
HDU 4165 pills
可以有两种做法: ①记忆化搜索 View Code #include <stdio.h>__
int64
f[32][32];__
int64
fun(int x,int y){
·
2015-11-02 13:17
HDU
2326: [HNOI2011]数学作业 - BZOJ
首先是DP,分段DP(按位数讨论) 然后每一段构造出它对应的矩阵,用矩阵快速幂加速 1 type 2 matrix=array[1..3,1..3]of
int64
·
2015-11-02 12:13
ZOJ
1041: [HAOI2008]圆上的整点 - BZOJ
InputrOutput整点个数Sample Input4Sample Output4HINTn<=2000 000 000 不会做,膜拜神犇的题解 1 var 2 r:
int64
·
2015-11-02 12:48
2008
对数字、小数字符串进行每隔三位加逗号(千分法)
quot;no"></param> /// <returns></returns> public string FormatNo(
Int64
·
2015-11-02 12:35
字符串
C# 字符串格式化测试小工具
工具很简单,可以用来测试DateTime、Int16、Int32、
Int64
、Decimal、Single、Double、Byte、Guid 这几个类型的ToString格式化输出。应园子里朋
·
2015-11-02 10:10
字符串
delphi Int64Rec 应用实例
以下代码可以看到 Int64Rec <-->
Int64
procedure TForm1.Button2Click(Sender: TObject); var ii1,ii2,ii3:
·
2015-11-02 09:36
Delphi
Linq聚合函数
4 LongCount 返回一个
Int64
类型的值,用它来计算元素大于Int32.MaxValue的
·
2015-11-02 09:50
LINQ
杭电2044
1 #include <stdio.h> 2 int main() 3 { 4 int i, j, n; 5 __
int64
d[51] = {1, 1,
·
2015-11-01 15:29
杭电
C++中的long long和__
int64
类型
C语言中long long的用法 http://www.awuit.com/c-language-the-usage-of-long-long/ 阿吴 | C/C++ | 十一月, 03 2009 | 5 Comments 在分析BT代码的过程中,遇到了这样的定义:long long line_position;很是纳闷,在C语言中我还没有见过这样的写法,网上搜了,资料也很少,最
·
2015-11-01 15:05
long
hdu 2062(DFS)
nbsp; AC代码 1 #include < stdio.h > 2 __
int64
·
2015-11-01 15:32
HDU
2875: [Noi2012]随机数生成器 - BZOJ
Input11 8 7 1 5 3Sample Output2 快速幂+快速乘 1 type 2 matrix=array[1..2,1..2]of
int64
·
2015-11-01 14:10
2012
2659: [Beijing wc2012]算不出的算式 - BZOJ
=(p/q)x下方的格点 如果p<>q,那么线上没有格点,就直接把这两块拼起来,变成一个矩形然后就直接算了 如果p=q,那就不用说了,都会 1 var 2 p,q:
int64
·
2015-11-01 14:49
2012
3157: 国王奇遇记 & 3516: 国王奇遇记加强版 - BZOJ
html 1 const 2 h=1000000007; 3 var 4 fac,facinv,powm,s:array[0..1100]of
int64
·
2015-11-01 14:48
ZOJ
上一页
27
28
29
30
31
32
33
34
下一页
按字母分类:
A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
S
T
U
V
W
X
Y
Z
其他