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
1019
lightOJ
1019
- Brush (V)
挑战上面有模板#include #include #include #include usingnamespacestd; constintMAX_V=105; constintINF=0x3f3f3f3f; intV,E; intd[MAX_V]; intused[MAX_V]; intG[MAX_V][MAX_V]; voiddijkstra(ints) { d[s]=0; while(
MrSiz
·
2015-11-21 23:00
C++
dijkstra
POJ-
1019
-数学规律
id=
1019
题意:给你这一串数字11212312341234512345612345671234567812345678912345678910123456789101112345678910……(重复下去
viphong
·
2015-11-20 16:00
洛谷
1019
单词接龙
洛谷
1019
单词接龙本题地址:http://www.luogu.org/problem/show?
Cool_Team
·
2015-11-15 14:29
字符串
DFS
poj
1019
Number Sequence
id=
1019
题意:1 12 123 1234 12345 一窜数字 求第n位的数字是什么 分析:拿到题就是不会。。。
·
2015-11-13 16:18
sequence
hdoj
1019
#include<iostream> using namespace std; /* int gcd( int a,int b) { int r = 0; while(b!=0) { r = a%b; a = b; b = r; } return a; } */ int gcd( int a,int b) { if(b==0) { return a; } else { return g
·
2015-11-13 12:47
OJ
JAVA 强制类型转换
参考:http://blog.csdn.net/aeolus
1019
/article/details/7971309 object对象转换为String的一些总结 在 java项目的实际开发和应用中
·
2015-11-13 11:21
java
【BZOJ】
1019
: [SHOI2008]汉诺塔
id=
1019
题意:汉诺塔规则,只不过盘子n<=30,终点在B柱或C柱,每一次移动要遵守规则:1、小的不能放在大的下边。2、之前移动过的圆盘不能再次移动。
·
2015-11-13 11:47
2008
POJ
1019
-Number Sequence
转载请注明出处:優YoU http://user.qzone.qq.com/289065406/blog/1301527312 大致题意: 有一串数字串,其规律为 1 12 123 1234 12345 123456 1234567 12345678 123456789 12345678910 1234567891011 123456789101112·&middo
·
2015-11-13 09:51
sequence
1019
-计算二叉树的高度和结点数
例如输入先序遍历序列A B # D # # C E # # F # #可以建立图
1019
-1所示的二叉树,这里用#代表空树或空子树(另一种说法:若无孩子结点,则用#代替),如图
1019
-2。
·
2015-11-13 08:17
二叉树
Number Sequence
id=
1019
题意:按照11212312341234561234567.。。123.。。。
·
2015-11-13 07:45
sequence
【翻译】The Linux Kernel Device Model
Linux内核设备模型 Patrick Mochel <
[email protected]
>translated by:leonardo
1019
translated
·
2015-11-13 04:41
kernel
tmd hdu
1019
真特么坑爹。。。我操
#include"stdio.h" int gcd(int m,int n) { int t,a,b,c; if(m<n) {t=m;m=n;n=t;} a=m;b=n;c=m%n; while(c!=0) {a=b;b=c;c=a%b;} return b; }int lcm(int m,int n) { return m/gcd(m,n)*n;//n必须后乘否则
·
2015-11-13 03:12
HDU
【翻译】bus
原文:linux-2.6.34.1\Documentation\driver-model\bus.txt translated by:leonardo
1019
2010年7月23日 总线类型
·
2015-11-13 02:57
翻译
【翻译】device
原文:linux-2.6.34.1\Documentation\driver-model\device.txt translated by:leonardo
1019
2010年7月23日 基本的设备数据结构
·
2015-11-13 02:56
device
[HODJ]
1019
. Least Common Multiple
题目本意是求一系列数的最小公倍数,我在博客中的一篇文章中已经写过一篇总结的文章,这里就不再赘述。本题需要注意的就是,在题目输入的要求中有一句话:All integers will be positive and lie within the range of a 32-bit integer.所以在求最小公倍数的函数中,要做些小手脚。经测试,如果按照以下方式写:int lcm(int a,int
·
2015-11-13 02:00
com
最小公倍数和最大公约数之小结
今天看了HDOJ上的
1019
题,题目的核心在于求两个数的最小公倍数(lowest common multiple),我想既然看到了这个题目
·
2015-11-13 02:59
小结
ural
1019
Line Painting
space=1&num=
1019
1 #include <cstdio> 2 #include <cstring> 3 #include <
·
2015-11-13 01:03
paint
LightOJ
1019
Brush (V)
problem=
1019
裸的dij,注意两点之间有多条边,因为这个WA了一次。
·
2015-11-13 01:27
sh
POJ
1019
, Number Sequence
Time Limit: 1000MS Memory Limit: 10000KTotal Submissions: 17288 Accepted: 4563 DescriptionA single positive integer i is given. Write a program to find the digit located in the
·
2015-11-12 22:54
sequence
1019
.Line Painting(线段树 离散化)
1019
离散化都忘记怎么写了 注意两个端点 离散化后用线段树更新区间 混色为-1 黑为2 白为1 因为N不大 最后直接循环标记这一段的颜色查找 1
·
2015-11-12 21:34
paint
学习参考
文件 http://kb.cnblogs.com/page/42226/ Chunk、Phrase、Paragraph的应用 http://blog.csdn.net/aeolus
1019
·
2015-11-12 20:04
学习
Smarty数据、模版创建指引
quot;itemUrl","type":"url","data":[],"dataFormat":"
1019
&
·
2015-11-12 20:41
smarty
ACM-简单题之Least Common Multiple——hdu
1019
***************************************转载请注明出处: http://blog.csdn.net/lttree*************************************** Least Common Multiple Time Limit: 2000/1000 MS (Java/Others) &n
·
2015-11-12 19:42
ACM
浅谈数据的离散化
http://www.cnblogs.com/kevince/p/3893531.html ——By Kevince 最近做了一些需要离散数据的题目,比如URAL
1019
·
2015-11-12 17:46
数据
POJ
1019
Number Sequence【数论】
Description A single positive integer i is given. Write a program to find the digit located in the position i in the sequence of number groups S1S2...Sk. Each group Sk consists of a sequence of posit
·
2015-11-12 15:13
sequence
HDU 题目分类
acronix/archive/2010/09/24/127536.aspx 分类一: 基础题:1000、1001、1004、1005、1008、1012、1013、1014、1017、
1019
·
2015-11-12 12:10
HDU
hdu
1019
Least Common Multiple(最小公倍数)
题意 : 求n个数的最小公倍数 思路: 这题直接枚举是不可能的 所以想到了一遍输入一边计算 把每次的gcd给除掉 并相乘 得到的就是lcm sum=sum*a/(gcd(s
·
2015-11-12 10:16
com
杭电
1019
题
//求最小公倍数//思路:先求两个数的最小公倍数,前两个数的最小公倍数与第三个数再求最小公倍数,求出最小公倍数后接着与第四个数相求。//求两个数的最小公倍数:利用辗转相除法#include <iostream>using namespace std;int gcd(int a,int b);int main(){ int row,col;
·
2015-11-12 09:37
杭电
HDU
1019
Least Common Multiple
题解:求n个数的最小公倍数,一个一个算就可以了,需要注意的是LCM先除GCD再乘,因为先乘有可能会超范围,1WA的代价。 #include <cstdio> int T,n,a,b; int gcd(int a,int b){if(b==0)return a;return gcd(b,a%b);} int main(){ scanf("%d",&a
·
2015-11-11 19:24
com
WIFI实时监控追踪小车演示视频——安卓端、小车
nbsp; http://hpw123.net/a/qingsongyike/yingyinqu/2014/
1019
·
2015-11-11 18:40
wifi
JQuery笔记:JQuery和JavaScript的联系与区别
来源:http://www.ido321.com/
1019
.html ps:LZ觉得这个标题有点大了,超出了能力范围,不喜勿碰。目前只记录LZ能力范围内的,日后持续补充。
·
2015-11-11 14:28
JavaScript
ACM hdu
1019
Least Common Multiple
Problem Description The least common multiple (LCM) of a set of positive integers is the smallest positive integer which is divisible by all the numbers in the set. For example, the LCM of 5, 7 an
·
2015-11-11 14:43
ACM
HDU 题目分类
://blog.sina.com.cn/s/blog_71ded6bf0100tuya.html 基础题: 1000、1001、1004、1005、1008、1012、1013、1014、1017、
1019
·
2015-11-11 14:32
HDU
HDU
1019
Least Common Multiple (最小公倍数)
Least Common Multiple Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others)Total Submission(s): 30285 Accepted Submission(s):
·
2015-11-11 13:44
com
csu
1019
Simple Line Editor
找到之前的错误了: else if (ch=='#' && i>=0) --i; 初始条件是 i = -1; 这样i = - 1;时,如果输入“#”,应该被忽略,但这句话其实没有做到。 应该这样写: else if (t[i]=='#') j = (j>=0 ? j-1:-1); 由于题目中没有提到一行文本到底有多少
·
2015-11-11 12:04
editor
WA : csu
1019
simple line editor
查了很多遍,不知道哪里错了,数组还不够大? 1 # include <stdio.h> 2 # include <ctype.h> 3 4 # define MAXN 10005 5 6 char a[MAXN]; 7 int i = -1, j, T; 8 char ch; 9 10 int main()11 {12 freopen("in.t
·
2015-11-11 12:57
editor
acdream
1019
: Palindrome 字符串多项式取Hash值
1019
: Palindrome Time Limit: 1 Sec Memory Limit: 128 MB Description Now
·
2015-11-11 11:07
hash
ASP.NET中的路径(path) 详解
id=
1019
跟 Browser Request 的网址相关的属性与方法 输出(output)实例 备  
·
2015-11-11 09:06
asp.net
ACM数论题集
pid=
1019
Volume 2http://acm.hdu.edu.cn/showproblem.php?pid=11
·
2015-11-11 06:21
ACM
hdu
1019
(gcd & lcm)
//数论,gcd & lcm相关//该题有只有一个数据的测试组#include <cstdio>#include <iostream>int gcd(int a, int b) { return b ? gcd(b, a%b) : a;}int lcm(int a, int b) { return a / gcd(a, b) * b;}int main(
·
2015-11-11 05:16
HDU
九度OJ
1019
简单计算器 -- 2006年浙江大学计算机及软件工程研究生机试真题
pid=
1019
题目描述: 读入一个只包含 +, -, *, / 的非负整数计算表达式,计算该表达式的值
·
2015-11-11 04:21
软件工程
HDOJ-
1019
Least Common Multiple
pid=
1019
题意:给出n个数,求它们的最小公倍数 对于n个数,它们的最小公倍数等于【前n-1个数的最小公倍数和第n个数】的最小公倍数 而前n-1个数的最小公倍数又等于【前n-
·
2015-11-11 03:47
com
hdu
1019
Least Common Multiple
View Code #include<iostream> #include<algorithm> using namespace std; #define max 100 int a[max]; int y(int a,int b) //求最大公约数 { if(b==0) return a; else return y(b,a%b)
·
2015-11-11 01:50
com
joj
1019
Do the Untwist
1019
: Do the Untwist Result TIME Limit MEMORY Limit Run Times AC Times JUDGE 3s 8192K
·
2015-11-11 01:33
OJ
poj
1019
——log10求位数
poj
1019
——log10求位数 Number Sequence Time Limit: 1000MS Memory Limit: 10000K
·
2015-11-11 00:58
poj
POJ
1019
Number Sequence
求解思路: 1 求解该位置所在的循环序列 Line:14~16 2 求解该位置数的位数 Line:17 3 求解该位置的数 Line:18 4求解该数的的对应位置的数值 1 #include < iostream > 2 #include
·
2015-11-10 21:25
sequence
ora-00845解决方法
[oracle@up~]$sqlplus/assysdbaSQL*Plus:Release11.2.0.1.0ProductiononTueNov
1019
:26:052015Copyright(c)1982,2009
ganhluzi
·
2015-11-10 11:04
ora-00845错误解决方法
ora-00845解决方法
[oracle@up~]$sqlplus/assysdbaSQL*Plus:Release11.2.0.1.0ProductiononTueNov
1019
:26:052015Copyright(c)1982,2009
ganhluzi
·
2015-11-10 11:04
ora-00845错误解决方法
PAT
1019
General Palindromic Number
#include <cstdio> #include <iostream> #include <cstdlib> using namespace std; void print(int d[], int s, int e, const char* msg) { printf("%s\n", msg); if
·
2015-11-09 14:16
number
acdream
1019
Palindrome(哈希)
id=
1019
题意:给定一个字符串str,两个操作: (1)C a x 将位置a上的字母改为x (2)Q a b 询问str[a,……b]是不是回文串。 思路:用哈希存储每个子串。
·
2015-11-09 14:51
ROM
上一页
20
21
22
23
24
25
26
27
下一页
按字母分类:
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
其他