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
4414
HDU
4414
Finding crosses
1 #include <iostream> 2 #include <cstdio> 3 #include <cstring> 4 using namespace std; 5 const int Ni = 60; 6 bool vis[Ni][Ni]; 7 char map[Ni][Ni]; 8 int n; 9 void In
·
2015-11-13 07:18
find
hdoj
4414
Finding crosses
pid=
4414
sb题啊,我wa了好久,你妹妹。。 就是暴力枚举,然后我的方法是在检查每一位的时候检查他的相邻位,是否符合条件,队友的方法是后面来次dfs、、其实都一样。。
·
2015-11-12 22:20
find
HDOJ -
4414
(Finding crosses)
思路 : 直接枚举 1 /* 2 PROG: Finding crosses 3 ID : 4 LANG: C++ 5 */ 6 //#pragma warnning (diaable : 4530) 7 //#pragma warnning (disable : 4786) 8 9 #include <set>
·
2015-11-11 06:07
find
HDU 1272
65536/32768 K (Java/Others)Total Submission(s): 14515 Accepted Submission(s):
4414
·
2015-11-01 12:46
HDU
HDU
4414
Finding crosses (DFS + BFS)
题意:在N*N的图中,找出孤立存在的十字架的个数。十字架要求为正十字,孤立表示组成十字架的‘#的周围的一格再无’#‘。 dfs找出在中心的‘#’(周围四格也为‘#'),则缩小了搜索范围,再bfs找出是否是符合要求。 #include <cstdio> #include <iostream> #include <cmath> #inclu
·
2015-10-31 18:34
find
hdu
4414
(字符水题)
pid=
4414
题意:找有多少个十字架,十字架周围不能有#。 思路:用简单暴力就可以过。 反思:这个题目做了很久,wa了4次。
·
2015-10-31 09:44
HDU
HDU-
4414
Finding crosses 水题
pid=
4414
直接暴力判断即可。
·
2015-10-31 09:09
find
db2常见异常
1、创建数据库时“SQL
4414
N DB2 管理服务器不是活动的。”错误。 原因:未启动DB2DAS-DB2DAS00服务。
·
2015-10-30 13:58
db2
HDOJ
4414
Finding crosses 暴力!
Finding crosses Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)Total Submission(s): 1631 Accepted Submission(s): 868 Problem Description The Nazca Lines are a series
·
2015-10-30 13:09
find
[草稿]定制anf
\TalentSolution\bbsSolution\Components\Posts.cs 行: 338 SqlDataProvider 行:
4414
·
2015-10-30 12:13
a
hdu
4414
1查找 # ### # 2 记a,b,c,d为距中心点的距离 3 如果a=b=c=d,在判断组成的cross的#号的上下左右没有#号 View Code
·
2015-10-28 08:07
HDU
NSRunLoop 概述和原理
转自:http://www.cocoachina.com/newbie/basic/2012/0703/
4414
.html 文/CocoaChina社区会员qqy620 1.什么是NSRunLoop
·
2015-10-28 07:12
loop
dirs、pushd、popd指令
转载自:http://hi.baidu.com/linuxtrip/item/47a38c8eec00e98f
4414
cfb7 一、目录栈指令目录栈是用户最近访问过的系统目录列表,并以堆栈的形式管理
·
2015-10-21 10:35
push
hdu
4414
Finding crosses 水题
#include #include #include usingnamespacestd; constintmaxn=50; charmap[maxn][maxn]; intn; intdx[4]={0,0,1,-1}; intdy[4]={1,-1,0,0}; booljudge(intx,inty) { if(xn||yn) returnfalse; returntrue; } intdfs(
cq_pf
·
2015-10-10 20:00
HDU
4414
Finding crosses(搜索)
题目链接:HDU
4414
Findingcrosses【题目大意】给你一张n*n的图,由o#这两个元素组成,让我们找其中有多少十字架。
chaiwenjun000
·
2015-09-06 15:00
搜索
DB2 错误记录解决
xhost+3、有人说注销直接用db2inst1登录在试试4、如果上面的方法都试了都不行可以把root用户加入到db2inst1组(我用的第四种方法)db2cc 出先UI界面但是还有错不能创建数据库 SQL
4414
NThe
1989丶
·
2015-06-02 17:00
HDU ACM
4414
Finding crosses 暴力枚举
分析:一个图,求图中‘#’组成了多少个十字架,注意十字架的宽度是奇数。对每个‘#’判断,上下左右,步长为1,2,。。。25是不是都符合条件,符合的话判断个数为奇数即可。#include usingnamespacestd; #defineN50 charmap[N][N]; intdir[4][2]={ {-1,0}, {0,-1}, {1,0}, {0,1}}; intn,ans; bool
a809146548
·
2015-05-31 17:00
编程
C++
c
算法
ACM
Ants(POJ 1852)
AntsTimeLimit:1000MS MemoryLimit:30000KTotalSubmissions:9974 Accepted:
4414
DescriptionAnarmyofantswalkonahorizontalpoleoflengthlcm
jxust_tj
·
2014-10-09 19:00
打开你的思维
poj3277--City Horizon(线段树+离散化+扫描线)
CityHorizonTimeLimit:2000MS MemoryLimit:65536KTotalSubmissions:16206 Accepted:
4414
DescriptionFarmerJohnhastakenhiscowsonatriptothecity
u013015642
·
2014-08-11 21:00
HDU
4414
Finding crosses(模拟 || DFS)
pid=
4414
FindingcrossesTimeLimit:2000/1000MS(Java/Others) MemoryLimit:32768/32768K(Java/Others)TotalSubmission
u012860063
·
2014-08-11 12:00
模拟
HDU
BOOK_READING_2_Computer Vision: Algorithms and Applications
来源:http://hi.baidu.com/susongzhi/item/e089bb8e8dbab28e
4414
cfe3BOOK_READING_2_ComputerVision:AlgorithmsandApplications
daoqinglin
·
2014-04-12 10:00
计算机视觉
cgi脚本
[root@IDC
4414
_YXF_2-1_jx2wzGS13cgi-bin]#more*.exe :::::::::::::: coverage.exe :::::::::::::: #!
mawengang_1211
·
2014-04-03 16:17
cgi脚本
发布到AppStore中的iOS应用程序审查指南
原文地址:http://hi.baidu.com/ztdj121/item/c9ba3085690a688d
4414
cfb3【转载】 http://www.btsmth.com/show_topic.php
hengshujiyi
·
2014-03-26 10:00
Android Please ensure that adb is correctly located at问题解决
转:http://hi.baidu.com/lanmosonny240/item/4d405a82ade7ce9a
4414
cf98 遇到问题描述: 运行android程序控制台输出
breezylee
·
2014-03-17 22:00
android
Android Please ensure that adb is correctly located at问题解决
转:http://hi.baidu.com/lanmosonny240/item/4d405a82ade7ce9a
4414
cf98 遇到问题描述: 运行android程序控制台输出
breezylee
·
2014-03-17 22:00
android
dns windows缓存 自动刷新
ipconfig-flushdns.htmlhttp://social.technet.microsoft.com/Forums/de-DE/windowsserversystemzhchs/thread/b2bb9c03-4b5c-
4414
arkblue
·
2014-03-03 17:00
L1、L2、正则、损失
转载出处:http://www.zhizhihu.com/html/y2013/
4414
.html微博上看到的,由于之前面试遇到过,答得不好,所以还是碰到就好好看看。
carrierlxksuper
·
2013-12-08 15:00
正则
范数
hdu
4414
Finding crosses
FindingcrossesTimeLimit:2000/1000MS(Java/Others)MemoryLimit:32768/32768K(Java/Others)TotalSubmission(s):822AcceptedSubmission(s):463ProblemDescriptionTheNazcaLinesareaseriesofancientgeoglyphslocatedin
u010422038
·
2013-08-28 09:00
Finding crosses(hdu
4414
,枚举)
pid=
4414
Finding crossesTime Limit: 2000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others
JHC23
·
2013-08-18 10:00
HDU
4414
Finding crosses (DFS + BFS)
题意:在N*N的图中,找出孤立存在的十字架的个数。十字架要求为正十字,孤立表示组成十字架的‘#的周围的一格再无’#‘。dfs找出在中心的‘#’(周围四格也为‘#'),则缩小了搜索范围,再bfs找出是否是符合要求。#include #include #include #include #include usingnamespacestd; charmap[55][55]; intn,cnt,head
paradiserparadiser
·
2013-08-02 20:00
hdu
4414
(DFS 找十字架数量)
ProblemDescriptionTheNazcaLinesareaseriesofancientgeoglyphslocatedintheNazcaDesertinsouthernPeru.TheyweredesignatedasaUNESCOWorldHeritageSitein1994.Thehigh,aridplateaustretchesmorethan80kilometres(50m
·
2013-07-29 19:00
HDU
HDU
4414
:Finding crosses
ProblemDescriptionTheNazcaLinesareaseriesofancientgeoglyphslocatedintheNazcaDesertinsouthernPeru.TheyweredesignatedasaUNESCOWorldHeritageSitein1994.Thehigh,aridplateaustretchesmorethan80kilometres(50m
libin56842
·
2013-07-28 20:00
模拟
HDU
hdu
4414
Finding crosses【简单模拟】
pid=
4414
CSUST:点击打开链接FindingcrossesTimeLimit:2000/1000MS(Java/Others) MemoryLimit:32768/32768K(Java
Cfreezhan
·
2013-07-17 21:00
ZT:SQL
4414
N “DB2 管理服务器”处于不活动状态 的处理
ZT:SQL
4414
N“DB2管理服务器”处于不活动状态的处理对此只要在服务里启动DB2相关服务即可。
当柳上原的风吹向天际的时候...
·
2013-07-15 21:00
告别手写 API文档生成工具推荐
软件研发告别手写API文档生成工具推荐http://www.csdn.net/article/2013-02-20/2814189-API_DOC_TOOLS发表于2013-02-2010:19|
4414
xiaoyao3857
·
2013-04-24 10:00
hdu (
4414
)(BFS+DFS)
/*暴力DFS+BFS,先DFS求出中心点,中心点的条件是它周围有四个点 然后BFS判断是否为十字架,判断条件:'#'数量=4*层数+1 自制测试样例: 5 o#oo# ####o o#o#o oo### ooo#o 5 o#oo# ###oo o#o#o oo### ooo#o 5 oo#oo oo#oo ##### oo#oo oo#oo 3 o#o ### o#o 0 2 1 1 */
Weiguang_123
·
2012-11-05 12:00
hdu
4414
Finding crosses(模拟)
#include #include #include usingnamespacestd; constintnMax=55; intN; charmap[nMax][nMax]; intans; //intvis[nMax][nMax]; intchecklr(intx,inty) { if(map[x][y]=='#'&&map[x][y-1]=='o'&&map[x][y+1]=='o'
lhshaoren
·
2012-10-09 10:00
include
杭电 HDU
4414
Finding crosses 2012 ACM/ICPC 杭州网赛
FindingcrossesTimeLimit:2000/1000MS(Java/Others) MemoryLimit:32768/32768K(Java/Others)TotalSubmission(s):336 AcceptedSubmission(s):212ProblemDescriptionTheNazcaLinesareaseriesofancientgeoglyphsloc
ilovexiaohao
·
2012-09-25 20:00
hdu
4414
Finding crosses
hdu
4414
Findingcrosses数据范围这么小,随便暴搜就可以过#include #include #include #include #include usingnamespacestd;
struggle_mind
·
2012-09-24 17:00
HDU
4414
Finding crosses
pid=
4414
暴力?依次扫描图形,碰到"#"的时候判断是否符合“十”条件,是的话count++,并且把该“十”图形的"#"变为"o";如果不符合,也把和最开始搜到的"#"相连的"#"全部换成"o"。
·
2012-09-24 13:00
find
HDU
4414
Finding crosses 暴力枚举
题意:在#o组成的n*n(3 #include usingnamespacestd; constintmaxn=52; constintmove[4][2]={{-1,0},{0,1},{1,0},{0,-1}}; charmap[maxn][maxn]; intn; voidread() { for(inti=0;i=0&&y>=0&&x
Flying_Stones_Sure
·
2012-09-24 01:00
hdu
4414
2012杭州网络赛
给出一个图,要求图中‘#’组成了多少个十字架,要注意十字架的宽度是奇数,比赛的时候队友dfs过的,不过我这样做也挺快。。思路:对每个‘#’进行判断,上下左右,步长为1,2,。。。25里面是不是都是符合条件,符合的话判断是不是个数为奇数即可#include #include constintmaxn=55; charmap[maxn][maxn]; intdx[]={-1,0,1,0},dy[]=
qingniaofy
·
2012-09-23 22:00
c
网络
ini
2012 ACM/ICPC杭州网赛总结 #by nobody
HDU
4414
:枚举。HDU4415:贪心,4小时59分32秒过了。总的来说还是题目见识得太少。有很多题都是经典的题但是由于没见过所以想不到。
XDU_Truth
·
2012-09-23 21:00
hdu-
4414
-Finding crosses
//一个模拟题,按题意搞就可以了,贴个代码:#include #include intn; charmat[60][60]; intjudge(inta,intb) { inti; if(mat[a][b]!='#')return0; for(i=1;;i++) { if(b-i=n) break; elseif(b-i=n) { if(mat[a][b-i]!='o'
laziercs
·
2012-09-23 20:00
hdu 1272 小希的迷宫 并查集->如何判断是否组成一串 即一棵树
Java/Others) MemoryLimit:65536/32768K(Java/Others)TotalSubmission(s):14515 AcceptedSubmission(s):
4414
ProblemDescription
hnust_xiehonghao
·
2012-08-16 19:00
input
output
NSRunLoop 概述和原理
原帖地址:http://www.cocoachina.com/newbie/basic/2012/0703/
4414
.html 感谢原作者1.什么是NSRunLoop?
newjerryj
·
2012-07-03 17:00
编程
timer
cocoa
input
mfc
UIView
内涵签名图
googlereader订阅本博客:http://feeds.feedburner.com/blogspot/CRBRG免费杀毒软件大集合总有你喜欢的:http://xun6.com/folder/c4d
4414
[email protected]
(rain) Ryan
·
2010-08-20 15:00
签名
内涵
SQL
4414
N “DB2 管理服务器”处于不活动状态
db2 linuxas 4下 安装错误 1 安装完成后,建立数据库时发生权限问题,无法创建数据库, 解决办法: 用db2inst1用户登陆,执行以下指令, db2trc on db2 "create database xxx" db2trc dump db2.trc db2trc off db2trc flw db2.trc db2.flw db2trc fmt db2.trc
江湖没有我的传说
·
2010-05-07 00:00
windows
linux
IBM
db2
活动
炎龙骑士的远程网页游戏技巧及攻略
新手人族发展纲要》的补充――外交篇[url]http://51CTO提醒您,请勿滥发广告-4415-1-1.html[/url] 新手人族发展纲要[url]http://51CTO提醒您,请勿滥发广告-
4414
itclubs
·
2009-04-23 09:20
职场
休闲
ASP TreeView 2.0 版 发布
id=
4414
演示页面:http://www.bcqx.com/free3/yjgx007/demo/samples/treedemo.as
happmaoo
·
2004-09-13 02:00
JavaScript
html
脚本
asp.net
asp
上一页
1
2
下一页
按字母分类:
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
其他