博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
杭电 1241 Oil Deposits
阅读量:5232 次
发布时间:2019-06-14

本文共 487 字,大约阅读时间需要 1 分钟。

题目地址:

    http://acm.hdu.edu.cn/showproblem.php?pid=1241

 

    经典深度优先遍历!

#include 
#define MAXN 110#define MAXM 110int n, m;char field[MAXN][MAXM];void dfs(int i, int j){ int dx, dy; int nx, ny; field[i][j] = '*'; for( dx = -1; dx <= 1; dx++ ) for( dy = -1; dy <= 1; dy++ ) { nx = i + dx; ny = j + dy; if( nx>=0 && nx
=0 && ny
View Code

 

转载于:https://www.cnblogs.com/yizhanhaha/p/3234389.html

你可能感兴趣的文章
【练习】使用事务和锁定语句
查看>>
centos7升级firefox的flash插件
查看>>
Apache Common-IO 使用
查看>>
评价意见整合
查看>>
二、create-react-app自定义配置
查看>>
Android PullToRefreshExpandableListView的点击事件
查看>>
系统的横向结构(AOP)
查看>>
linux常用命令
查看>>
NHibernate.3.0.Cookbook第四章第6节的翻译
查看>>
使用shared memory 计算矩阵乘法 (其实并没有加速多少)
查看>>
Django 相关
查看>>
git init
查看>>
训练记录
查看>>
IList和DataSet性能差别 转自 http://blog.csdn.net/ilovemsdn/article/details/2954335
查看>>
Hive教程(1)
查看>>
第16周总结
查看>>
C#编程时应注意的性能处理
查看>>
Fragment
查看>>
比较安全的获取站点更目录
查看>>
苹果开发者账号那些事儿(二)
查看>>