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
poj1562
HDU1241
POJ1562
UVa572 UVALive5317 Oil Deposits【DFS】
OilDepositsTimeLimit:1000MSMemoryLimit:10000KTotalSubmissions:17768Accepted:9440DescriptionTheGeoSurvCompgeologicsurveycompanyisresponsiblefordetectingundergroundoildeposits.GeoSurvCompworkswithonelar
海岛Blog
·
2020-07-08 07:17
#
ICPC-备用二
#
ICPC-UVA
#
ICPC-HDU
#
ICPC-POJ
#
ICPC-ZOJ
#
ICPC-UVALive
#
ICPC-DFS
poj 2386
poj1562
poj1979 图的遍历 八个方向和四个方向 深搜
三个题基本上就是一样的思路,学到了怎么遍历四个方向和八个方向 count初始化poj1562#include #include intw,h; chara[105][105]; voidmi_gong(intx,inty) { a[x][y]='*'; inttempx; inttempy; for(intk=-1;k=0&&tempy>=0&&tempx intw,h; chara[10
Summer__show_
·
2016-02-01 00:00
poj1562
简单题 View Code #include <iostream> #include <cstdio> #include <cstdlib> #include <cstring> #include <queue> using namespace std; #define maxn 105 struct P
·
2015-11-01 13:06
poj
poj1562
深搜
#include <cstdio> #include <cstring> #include <algorithm> #include <climits> #include <string> #include <iostream> #include <map> #include <cstdlib&
·
2015-10-31 10:37
poj
POJ1562
题意是在途中找@块的数量,算上斜方向的。#include #include #include chara[110][110]; intvis[110][110]; intsizev=sizeof(vis); intcou,m,n; intdir[8][2]={{1,0},{1,-1},{0,1},{0,-1},{-1,0},{-1,1},{1,1},{-1,-1}};///用数组存放上下左右选项
EventQueue
·
2015-09-22 18:00
算法
ACM
poj
DFS
深度搜索
ZOJ1709/
POJ1562
油田问题/搜索/DFS
OilDepositsTimeLimit:1000MS MemoryLimit:32768KB 64bitIOFormat:%I64d&%I64uDescriptionGeoSurvComp地质调查公司负责探测地下石油储藏。GeoSurvComp现在在一块矩形区域探测石油,并把这个大区域分成了很多小块。他们通过专业设备,来分析每个小块中是否蕴藏石油。如果这些蕴藏石油的小方格相邻,那么他们被认为
AgoniAngel
·
2015-07-25 10:23
搜索
poj1562
Oil Deposits(简单的深搜)
OilDepositsTimeLimit: 1000MS MemoryLimit: 10000KTotalSubmissions: 14391 Accepted: 7823DescriptionTheGeoSurvCompgeologicsurveycompanyisresponsiblefordetectingundergroundoildeposits.GeoSurvCompworkswith
su20145104009
·
2015-07-18 15:00
poj
oil
1562
poj1562
Deposits
OJ终于到了300道,附赠部分题目的错误记录
POJ1562
奇奇怪怪:Pow()函数真奇怪!Pow(27,1.0/3)=2?POJ2363一样的题目,放心从1开始到sqrt!POJ3536数组模拟大数除法,哪里错了?感觉都是对的啊!
Baileys0530
·
2015-02-27 23:00
报错
poj
UVA572 HDU1241
POJ1562
Oil Deposits【DFS】
OilDeposits TheGeoSurvCompgeologicsurveycompanyisresponsiblefordetectingundergroundoildeposits.GeoSurvCompworkswithonelargerectangularregionoflandatatime,andcreatesagridthatdividesthelandintonumerous
u011676797
·
2014-12-11 17:00
POJ1562
Oil Deposits(图论入门)
#include #include #include usingnamespacestd; charmap[111][111]; intn,m; voiddfs(intx,inty) { map[x][y]='*'; if(x-1>=0&&map[x-1][y]=='@') dfs(x-1,y); if(x+1=0&&y-1>=0&&map[x-1][y-1]=='@') dfs(x-1,y-1)
rebelqsp
·
2014-05-19 19:00
Nyoj 27 水池数目
跟
poj1562
相当类似!题目来源:http://acm.nyist.net/JudgeOnline/problem.php?
Hearthougan
·
2014-04-03 21:00
搜索
2012寒假POJ(2)
今天接着完成那一系列的新手题目,但是发现好像分类有点问题,
POJ1562
和POJ1979。
dav7651
·
2012-12-24 17:37
poj
北大ACM
poj1562
/*problem:
poj1562
*author:gubojun *time:2012.7.27 *language:C *题目大意:求有多少个不相连的区域代码中的解释很多了,别的不说了 */#include
gubojun123
·
2012-07-27 12:00
ZOJ1709
POJ1562
Oil Deposits,并查集
这题一般都会用DFS来做的,但是我这里使用并查集来做,感觉效果也不错,以下是代码。/******************************************************************************* *Author:NeoFung *Email:
[email protected]
*Lastmodified:2011-08-2618:56 *Filen
neofung
·
2011-08-26 18:00
上一页
1
下一页
按字母分类:
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
其他