博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
hdu 1312 Red and Black
阅读量:6231 次
发布时间:2019-06-21

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

#include
int w,h,ans;char a[30][30];int d[4][2]={
{
0,-1},{
0,1},{
1,0},{-1,0}};int dfs(int i,int j){ int ii,jj; for(int k=0;k<4;k++) { ii=i+d[k][0]; jj=j+d[k][1]; if(ii
=0&&jj>=0&&a[ii][jj]=='.') { ans++; a[ii][jj]='#'; dfs(ii,jj); } } return 0;}int main(){ int x,y; while(scanf("%d %d",&w,&h)!=EOF&&w!=0&&h!=0) { getchar(); for(int i=0;i

 

转载于:https://www.cnblogs.com/XDJjy/archive/2013/05/09/3069543.html

你可能感兴趣的文章
Uncaught TypeError: jQuery.i18n.browserLang is not a function
查看>>
JavaScript中的闭包详解
查看>>
【JSP】JSP Action动作标签
查看>>
iOS:CoreText的常用语法
查看>>
dropify,不错的图片上传预览插件
查看>>
为什么都不写博
查看>>
希腊字母表
查看>>
httpd配置文件httpd.conf规则说明和一些基本指令
查看>>
python中self cls init的理解
查看>>
java:类集操作总结
查看>>
Flake8学习
查看>>
SpringBoot项目eclipse运行正常maven install打包启动后报错ClassNotFoundException
查看>>
ASP.NET Core的身份认证框架IdentityServer4(9)-使用OpenID Connect添加用户认证
查看>>
[Python] String Formatting
查看>>
lapis 处理接收到的json 数据
查看>>
【spring boot logback】日志使用自定义的logback-spring.xml文件后,application.properties中关于日志的相关配置还会起作用么...
查看>>
Ad Hoc Distributed Queries的启用与关闭
查看>>
java工具类POI导出word
查看>>
openwrt使用list
查看>>
shell语言
查看>>