博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
cf E. Neatness
阅读量:4974 次
发布时间:2019-06-12

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

http://codeforces.com/contest/359/problem/E

题意:要关掉所有房间的灯,一个步骤要么开灯,要么关灯,要么向有灯的方向前进一格。输出一种关掉所有灯的方案。不能关掉所有灯输出NO

往前搜索时点灯,后退时关灯。

1 #include 
2 #include
3 #include
4 #define maxn 505 5 using namespace std; 6 7 bool flag; 8 int n,sx,sy; 9 int t1,t2;10 int g[maxn][maxn];11 int vis[maxn][maxn];12 int dir[4][2]={
{
1,0},{-1,0},{
0,1},{
0,-1}};13 char dir1[4]={
'D','U','R','L'};14 char path[1000010];15 16 bool deal(int x,int y)17 {18 if(x>=0&&x
=0&&y
View Code

 

转载于:https://www.cnblogs.com/fanminghui/p/3939849.html

你可能感兴趣的文章
面试-java算法题
查看>>
IDEA类和方法注释模板设置(非常详细)
查看>>
eclipse生成并调用webservices客户端client
查看>>
Java--动态代理
查看>>
day05列表 类型
查看>>
闲聊测试工程师
查看>>
如何在线编辑修改PDF文件中的背景颜色
查看>>
angularJS 学习之路
查看>>
php header
查看>>
汇编第一章总结
查看>>
java-面向对象编程
查看>>
TCP协议
查看>>
【iOS学习笔记】01-开篇
查看>>
MySQL多实例安装
查看>>
用一个玩具例子说明基于视频的超分辨率重建的基本思想
查看>>
集训 D1T1 clique
查看>>
ContentProvider类的设计分析
查看>>
Codeforces 869E The Untended Antiquity
查看>>
boost 相关
查看>>
在Ubuntu Server下搭建LAMP环境
查看>>