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
strange
HDU 1548 (最基础的BFS了) A
strange
lift
这是一维的BFS,而且没有什么变形,应该是最基础的BFS了吧 题意: 有这样一个奇葩的电梯,你在第i层的时候你只能选择上或者下Ki层,也就是你只能从第i层到达i+Ki或者i-Ki层。当然电梯最低只能在1层最高只能在n层。 给出起点和终点问最少需要多少次才能到达终点,如果不能到达输出-1 没有什么好解释的了,如此单纯的一道题,只要不是太粗心就能A过去
·
2015-11-02 11:20
HDU
hdu 5152 A
Strange
Problem(题意分析)线段树+欧拉函数
*******************BC题解**********************************************************************1003 A
Strange
·
2015-11-02 11:33
HDU
poj 1958
Strange
Towers of Hanoi (dp)
http://poj.org/problem?id=1958 做的第一个题目给算法的题。 过程说的很明了,先把n-k个用四个柱子的方法移动到B,再把k个用三个柱子的方法移动到D,最后把n-k个用四个柱子的方法移动到D。n-k个共移动了两次,三个柱子移动的最少步数我们知道为2^n-1,总的移动步数即为f[i-j]*2+t[j],得转移方程f[i] = Min(f[i], f[i-j]*2+
·
2015-11-01 16:31
poj
error when building an virtual path in iis
i met an
strange
problem when building a test website in iis. exploring in the event viewer, i
·
2015-11-01 15:31
virtual
UVa 11529 (计数)
Strange
Tax Calculation
枚举一个中心点,然后将其他点绕着这个点按照极角排序。 统计这个中心点在外面的三角形的个数,然后用C(n-1, 3)减去这个数就是包含这个点的三角形的数量。 然后再枚举一个起点L,终点为弧度小于π的点R。 在[L+1, R]任取两点再加上起点,这些三角形都不包含中心点。 1 #include <cstdio> 2 #include <cmath> 3
·
2015-11-01 14:00
uva
HDU 1548 A
strange
lift 奇怪的电梯(BFS,水)
题意:有一座电梯,其中楼层从1~n,每层都有一个数字k,当处于某一层时,只能往上走k层,或者下走k层。楼主在a层,问是否能到达第b层? 思路:在起点时只能往上走和往下走两个选择,之后的每层都是这样,那么就类似于二叉树。每个节点就是对应的层,因为有可能碰到循环的层,比如1跳到3,3跳回1,这样使得无限循环,所以加个vis数组标记是否遍历过即可。 1 #i
·
2015-11-01 13:27
HDU
Strange
Graph(欧拉路)
时间限制:0.25s 空间限制:6M 题目描述 让我们想象一个无向图G=<V,E>.如果边(u,v)在边集E中,那么我们就说两个顶点u和v是邻接点.在这种情况下,我们也说u是v的一个邻接点且v是u的一个邻接点.我们用N(v)表示点v的邻接点集 合.我们知道v的邻接点数目也叫作这个点的度,用deg v表示. 我们说图G是奇怪的
·
2015-11-01 12:40
Graph
HDU 1548 A
strange
lift
A
strange
lift Time Limit: 1000ms Memory Limit: 32768KB This problem will be judged on HDU
·
2015-11-01 11:35
HDU
Strange
Grid
1 def main(): 2 3 r,c = map(int, raw_input().split(' ')) 4 5 if r % 2 != 0: 6 base = 5*(r-1) 7 else: 8 base = 5*(r-2) + 1 9 10 col = (c-1) * 2 11
·
2015-10-31 19:42
grid
hdu 1882
Strange
Billboard(位运算+枚举)
http://acm.hdu.edu.cn/showproblem.php?pid=1882 感觉非常不错的一道题。 给一个n*m(1<=n,m<=16)的矩阵,每一个格子都有黑白两面,当翻一个格子时,它的上下左右都要翻转,问最后使格子全变为白色的最少翻转步数。 仅仅需枚举第一行的状态即可,由于对于第i(i>=2)行j列翻转情况受上一行的制约,仅仅有当上一行也是‘X’
·
2015-10-31 17:04
HDU
Hdu 1548 A
strange
lift(BFS)
A
strange
lift Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536
·
2015-10-31 15:49
HDU
《Cracking the Coding Interview》——第6章:智力题——题目4
代码: 1 // 6.4 There is an island with a bunch of people living there. 2 // The
strange
thing is,
·
2015-10-31 15:55
interview
zoj 3332
Strange
Country II (dfs)
http://acm.zju.edu.cn/onlinejudge/showProblem.do?problemCode=3332 看XSY博客有这题,就做一下,结果够让人郁闷的,太粗心了... 一开始用的宏比较多,出了个没见过的错 Segmentation Fault ,这个好像类似与POJ的RE,内存错误。搞不懂,直接去掉了宏。 然后就开始WA了,impossible写成
·
2015-10-31 15:43
count
hdu 2899
Strange
Fuction(二分)
http://acm.hdu.edu.cn/showproblem.php?pid=2899 简单二分,但这个不满足单调性。 题目要求极值点,以函数导数的正负作为条件二分即可。 code: #include<cstdio> #include<cmath> double y = 0 ; d
·
2015-10-31 15:30
HDU
Codeforces Beta Round #51 D. Beautiful numbers
megabytes input standard input output standard output Volodya is an odd boy and his taste is
strange
·
2015-10-31 13:07
codeforces
UVA 712 (13.08.23)
S-Trees A
Strange
Tree (S-tree) over the variable set is a binary tree representing
·
2015-10-31 11:57
uva
HDOJ---1548 A
strange
lift[BFS()]
A
strange
lift Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768
·
2015-10-31 11:47
bfs
UVA10361 -自动作诗机
The funny thing about this
strange
type of poetry is that if somebody gives you the first line and the
·
2015-10-31 11:40
uva
poj 1837 Balance
Memory Limit: 30000K Total Submissions: 8754 Accepted: 5320 Description Gigel has a
strange
·
2015-10-31 11:24
poj
Really
Strange
!!
UVA_10519 第n个圆与n-1个圆共有2*(n-1)个交点,新生成2*(n-1)个区域,所以f(n)=f(n-1)+2*(n-1),进而可得f(n)=n^2-n+2,但要注意f(0)=1。 import java.math.BigInteger;import java.util.Scanner;public class Main { publ
·
2015-10-31 11:44
uva
hdu 1548 A
strange
lift (dijkstra算法)
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1548 题目大意:升降电梯,先给出n层楼,然后给出起始的位置,即使输出从A楼道B楼的最短时间。 注意的几点 (1)每次按一下,只能表示上或者是下,然后根据输入的看是上几层或者是下几层。 (2)注意不能到底不存在的楼层。 详见代码。 1 #include <iostream>
·
2015-10-31 11:53
dijkstra
hdu 2899
Strange
fuction (二分)
题目链接:http://acm.hdu.edu.cn/showproblem.pihp?pid=2899 题目大意:找出满足F(x) = 6 * x^7+8*x^6+7*x^3+5*x^2-y*x (0 <= x <=100)的x值。注意精确度的问题。 求满足条件的x的最小值!!求导,利用单调性来找到最小值。 1 #include <iostream>
·
2015-10-31 11:52
HDU
C:\Windows\system32\config\systemprofile\AppData\Local\Microsoft\Team Foundation\4.0\Cache\VersionControl.config is not valid and cannot be loaded.
Recently, we experienced a
strange
problem with TFS 2010.
·
2015-10-31 10:38
Microsoft
poj1837
Limit: 30000K Total Submissions: 5009 Accepted: 2969 Description Gigel has a
strange
·
2015-10-31 10:13
poj
hdu 1548 A
strange
lift(优先队列)
简单的优先队列,原来没学觉得还是不好做(貌似原来题目都没咋搞懂!!!) 今早遇见果断拿下!!! 清早水一道吧!(再过两天想回家看看,集训一个多月了,咋说呢!说累不累,就是不想了!!!) &&&&&&&&&&&&&&&&&&&&&
·
2015-10-31 10:19
优先队列
Innodb vs MySQL index counts
www.mysqlperformanceblog.com/2011/11/29/innodb-vs-mysql-index-counts/ I had a customer recently who a few
strange
·
2015-10-31 10:13
InnoDB
hdu 1548 A
strange
lift
SPFA #include<stdio.h> #include<string.h> #include<math.h> #include<vector> #include<algorithm> using namespace std; const int maxn = 222; int k[maxn], ji[maxn];
·
2015-10-31 10:03
HDU
POJ-2891
Strange
Way to Express Integers 模线性方程组
题目链接:http://poj.org/problem?id=2891 题意:求解模线性方程组,且任意的ai可能不互质。 直接用扩展欧几里得求解就可了,具体可以看:http://www.cnblogs.com/zhsl/archive/2013/04/12/3017109.htm 1 //STATUS:C++_AC_0MS_196KB 2 #include<stdi
·
2015-10-31 10:57
Integer
CF 55D Beautiful numbers(数位DP)
megabytes input standard input output standard output Volodya is an odd boy and his taste is
strange
·
2015-10-31 10:28
number
HUT-XXXX
Strange
display 容斥定理,线性规划
该题题义是有一个显示器,在给定了一系列的操作后,询问最后显示器所显示的区域。 对于每个操作,给定一个x坐标和一个y坐标,以及三角形(等腰直角三角形)的边长。对于每个面积覆盖次数为奇数的区域是显示的,对于覆盖了0次或偶数次的区域是不显示的。 那么我们可以将题目这样进行转化,我们规定了个三角形的区域,它的横纵坐标分别是x, y,边长为 r 那么这个三角形可以用一个方程组来表示,令 ci = xi
·
2015-10-31 09:14
display
POJ 2891
Strange
Way to Express Integers
模线性同余方程组的求解 1 #include <cstdio> 2 #include <cstring> 3 4 using namespace std; 5 const int N = 1005; 6 7 #define ll long long 8 ll a[N] , b[N]; 9 10 ll ex_gcd
·
2015-10-31 09:08
Integer
A
Strange
Dog called Vagaa II (矩阵相乘)
m=ProblemSet&a=showProblem&problem_id=1100 矩阵相乘法 A
Strange
Dog called Vagaa II
·
2015-10-31 09:14
call
SGU 145.
Strange
People(无环K短路)
时间:0.25s空间:4m 题意: 其实就是求无环第K短路。 输入: 给出n,m,k,分别代表,n个点,m条边,第k长路。 接下来m行,三个整数x,y,z,分别代表x,y之间有条费用为x的双向路。保证没有重边。 输出: 第一行两个数a,b,第k小费用a,和经过的点的个数b。 接下来b个数,代表第k短的路径。
·
2015-10-31 09:28
tr
How Does #DeepDream Work?
If you’ve been browsing the net recently, you might have stumbled on some
strange
-looking images, with
·
2015-10-31 09:55
or
HDU-1548 A
strange
lift
Problem Description There is a
strange
lift.The lift can stop can at every floor as you want, and there
·
2015-10-30 18:28
HDU
字符串匹配自动机
Strange
Dialog Time Limit: 1.0 second Memory Limit: 16 MB One entity named "one" tells with
·
2015-10-30 18:37
字符串
uva-712 S-Trees
A
Strange
Tree (S-tree) over the variable set is a binary tree representing a Boolean function
·
2015-10-30 17:57
tree
POJ-2891
Strange
Way to Express Integers 中国剩余定理
这题是一道非常直接的中国剩余定理的题目,但是这里的不同的给定的几个数不一定是互质的。因此也就不能直接用解中国剩余定理的方法来求了。 我们通过迭代法来求解最后的答案。 设有 x = 1(mod 5) y = 2(mod 6) z = 3(mod 7) 那么根据第一个方程我们设 x = 5t+1, 代入到第二个方程 5t+1 = 2(mod 6) ==> 5t
·
2015-10-30 14:27
Integer
TED_Topic6:How to raise a black son in America
By Clint Smith As kids, we all get advice from parents and teachers that seems
strange
, even confusing
·
2015-10-30 14:50
top
获取当前位置
http://stackoverflow.com/questions/3535800/cllocationmanager-
strange
-memory-leak #import <Foundation
·
2015-10-30 13:47
获取
.NET Delegates: A C# Bedtime Story
Tight CouplingOnce upon a time, in a
strange
land south of here, there was a worker named Peter.
·
2015-10-30 13:49
delegate
hdoj 5198
Strange
Class 水题
Strange
Class Time Limit: 1 Sec Memory Limit: 256 MB 题目连接 http://acm.hdu.edu.cn/showproblem.php
·
2015-10-30 13:26
Class
Codeforces Round #295 (Div. 2)B - Two Buttons BFS
limit per test 256 megabytes input standard input output standard output Vasya has found a
strange
·
2015-10-30 13:02
codeforces
Strange
Way to Express Integers(中国剩余定理+不互质)
Strange
Way to Express Integers Time Limit:1000MS Memory Limit:131072KB 64bit IO Format:%I64d &
·
2015-10-30 11:11
Integer
CodeForces 520B Two Buttons(用BFS)
limit per test 256 megabytes input standard input output standard output Vasya has found a
strange
·
2015-10-30 11:42
codeforces
WPF
Strange
TextBlock Bug ,
add textblock on ui , as bellow: <Grid> <TextBlock Height="23" HorizontalAlignment="Left" Margin="16,18,0,0" Name="textBlock1"
·
2015-10-30 11:49
block
【算法】利用有限自动机进行字符串匹配
Strange
Dialog 要求判断给定的输入是否为合法的对话。 1102.
·
2015-10-30 10:20
字符串
How to render the " " in dropdownlist
but we are found that is
strange
, " " Is not space . on dropdownlist
·
2015-10-28 09:40
list
HDU1548 A
strange
lift BFS 简单题
一个电梯有n层,每一层有一个数k[i],和2个按钮,UP和DOWN,表示从这一层可以到达i+k[i] 或i-k[i] . 给出a,b,问从a到b 最少需要按多少下按钮。 直接bfs. 1 #include<cstdio> 2 #include<queue> 3 #include<cstring> 4 using nam
·
2015-10-28 08:51
HDU
HDU 2899
Strange
fuction (二分)
Strange
fuction Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 32768/32768
·
2015-10-27 16:03
HDU
上一页
5
6
7
8
9
10
11
12
下一页
按字母分类:
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
其他