「Luogu P2845 [USACO15DEC]Switching on the Lights 开关灯」
USACO的又一道搜索题
前置芝士
具体做法
对于一个点,它可能有不止一个房间,虽然可以开一个\([x_1][y_1][x_2][y_2]\)的邻接矩阵,但是每次查询时需要\(\theta(N^2)\)枚举,十分的麻烦,还可能会T,这时就需要用到链式前向星来优化了,不仅优化了时间,还优化了空间,简直一举两得.这里的链式前向星的写法也很简单:
代码
struct Edge//定义一个结构体
{
int next;
int x,y;
}edge[maxM];
int cnt=0;
int _head[maxN][maxN];
void Add(Room a,Room b)//在房间a和房间b间添加一条边
{
edge[++cnt].x=b.x;
edge[cnt].y=b.y;
edge[cnt].next=_head[a.x][a.y];
_head[a.x][a.y]=cnt;
}
//一时define一时爽,一直define一直爽
#define For(x,y) for(int _i_=_head[x][y];_i_;_i_=edge[_i_].next)
#define X edge[_i_].x
#define Y edge[_i_].y
对于每个点它只会进一次队列,但是如果那时它的灯没有打开,不代表这个灯永远不会被打开,所以在每进入一个房间后需要判断被打开灯的房间是否被询问过,如果被询问过需要将这个点放入队列.
注意输出的是有多少个房间的灯可以被打开.
有一些具体的细节讲.
代码
#include<bits/stdc++.h>
#define rap(i,first,last) for(int i=first;i<=last;++i)
using namespace std;
const int maxN=105;
const int maxM=1e6+5;
const int move_x[5]={233,1,-1,0,0};
const int move_y[5]={233,0,0,1,-1};
int head=0,tail=1;
bool visit[maxN][maxN];
struct Que//队列
{
int x;
int y;
}que[maxN*maxN];//队列里最多N^2个房间,每个房间只会进一次
int N,M;
struct Room//对于房间再开一个结构体
{
int x,y;
};
//链式前向星
struct Edge
{
int next;
int x,y;
}edge[maxM];
int cnt=0;
int _head[maxN][maxN];
bool opened[maxN][maxN];
void Add(Room a,Room b)
{
edge[++cnt].x=b.x;
edge[cnt].y=b.y;
edge[cnt].next=_head[a.x][a.y];
_head[a.x][a.y]=cnt;
}
int answer=1;
#define For(x,y) for(int _i_=_head[x][y];_i_;_i_=edge[_i_].next)
#define X edge[_i_].x
#define Y edge[_i_].y
//
void Open(int x,int y)//打开一个房间的开关
{
For(x,y)
if(!opened[X][Y])//注意要有这个特判
{
opened[X][Y]=1;
answer++;//每打开一个灯answer++
if(visit[X][Y])//如果询问过就放入队列
{
que[++tail].x=X;
que[tail].y=Y;
}
}
}
int main()
{
scanf("%d%d",&N,&M);
Room room1,room2;
rap(i,1,M)
{
scanf("%d%d%d%d",&room1.x,&room1.y,&room2.x,&room2.y);
Add(room1,room2);//添加一条边
}
rap(i,1,N)visit[i][0]=visit[0][i]=visit[N+1][i]=visit[i][N+1]=1;//在四周打上标记
que[1].x=1;
que[1].y=1;
opened[1][1]=1;
while(++head<=tail)
{
Open(que[head].x,que[head].y);//在队头时打开比较方便,不会有遗漏
rap(i,1,4)
if(opened[que[head].x+move_x[i]][que[head].y+move_y[i]])//如果这个位置的灯被打开了
{
if(!visit[que[head].x+move_x[i]][que[head].y+move_y[i]])//没有询问过就放入队列
{
visit[que[head].x+move_x[i]][que[head].y+move_y[i]]=1;
que[++tail].x=que[head].x+move_x[i];
que[tail].y=que[head].y+move_y[i];
}
}
else
{
visit[que[head].x+move_x[i]][que[head].y+move_y[i]]=1;//没有被打开也要标记为询问过
}
}
printf("%d",answer);//输出answer
return 0;
}
「Luogu P2845 [USACO15DEC]Switching on the Lights 开关灯」的更多相关文章
- Luogu P2845 [USACO15DEC]Switching on the Lights 开关灯(bfs)
P2845 [USACO15DEC]Switching on the Lights 开关灯 题意 题目背景 来源:usaco-2015-dec \(Farm\ John\)最近新建了一批巨大的牛棚.这 ...
- P2845 [USACO15DEC]Switching on the Lights 开关灯
题目背景 来源:usaco-2015-dec Farm John 最近新建了一批巨大的牛棚.这些牛棚构成了一个N*N的矩形网络.(1<n<100) 然而bessie十分怕黑,他想计算可以把 ...
- 搜索【洛谷P2845】 [USACO15DEC]Switching on the Lights 开关灯
P2845 [USACO15DEC]Switching on the Lights 开关灯 题目背景 来源:usaco-2015-dec Farm John 最近新建了一批巨大的牛棚.这些牛棚构成了一 ...
- 「Luogu P5494 【模板】线段树分裂」
(因为没有认证,所以这道题就由Froggy上传) 线段树分裂用到的地方确实并不多,luogu上以前也没有这道模板题,所以就出了一道,实在是想不出怎么出模板了,所以这道题可能可以用一些其他的算法水过去. ...
- [Luogu 3128] USACO15DEC Max Flow
[Luogu 3128] USACO15DEC Max Flow 最近跟 LCA 干上了- 树剖好啊,我再也不想写倍增了. 以及似乎成功转成了空格选手 qwq. 对于每两个点 S and T,求一下 ...
- 洛谷P2828 Switching on the Lights(开关灯)
P2828 Switching on the Lights(开关灯) 题目背景 来源:usaco-2015-dec Farm John 最近新建了一批巨大的牛棚.这些牛棚构成了一个N*N的矩形网络.( ...
- bzoj4395[Usaco2015 dec]Switching on the Lights*
bzoj4395[Usaco2015 dec]Switching on the Lights 题意: n*n个房间,奶牛初始在(1,1),且只能在亮的房间里活动.每当奶牛经过一个房间,就可以打开这个房 ...
- 洛谷P2845-Switching on the Lights 开关灯
Problem 洛谷P2845-Switching on the Lights 开关灯 Accept: 154 Submit: 499Time Limit: 1000 mSec Memor ...
- FileUpload控件「批次上传 / 多档案同时上传」的范例--以「流水号」产生「变量名称」
原文出處 http://www.dotblogs.com.tw/mis2000lab/archive/2013/08/19/multiple_fileupload_asp_net_20130819. ...
随机推荐
- SpringBoot 配置 Redis 多缓存名(不同缓存名缓存失效时间不同)
import com.google.common.collect.ImmutableMap; import org.springframework.cache.CacheManager; import ...
- 如何使html中的元素不被选中
有时候,为了提高用户的体验度,需要使网页中的部分内容防误操作,不被选中,比如今天的商城项目中的一个细节部分: + —号其实是a标签做的,当连续点击多次,就会使符号被选中,这样感觉起来不太好,于是查找解 ...
- WLC-安装license
在CLI界面安装licenseStep 1 Install a license on the controller by entering this command:①license install ...
- C++中的sort函数和⾃定义cmp函数
写在最前面,本文摘录于柳神笔记: sort 函数在头⽂件 #include ⾥⾯,主要是对⼀个数组进⾏排序( int arr[] 数组或 者 vector 数组都⾏), vector 是容器,要⽤ v ...
- 安装 Python 虚拟环境 (Linux)
我的 Ubuntu 18.04 预安装了 python 3.6,但是没有安装 pip,所以先进行安装: apt-get install python-pip 1. 安装虚拟环境所需包: pip ins ...
- 在iOS项目中,这样才能完美的修改项目名称
https://www.cnblogs.com/liangyi-cn/p/8657474.html 前言: 在iOS开发中,有时候想改一下项目的名字,这会遇到很多麻烦. 直接改项目名的话,Xcode不 ...
- 用Struts2框架报错:The Struts dispatcher cannot be found
报错信息 The Struts dispatcher cannot be found. This is usually caused by using Struts tags without the ...
- GO 回调实现
函数作为参数传递,实现回调. package main import "fmt" // 声明一个函数类型 type cb func(int) int func main() { t ...
- vs2010 c++中内嵌汇编代码
在研究汇编时,需要自己写点汇编代码测试,用Ollydbg写每次加载程序就没了,不是很方便. 可以考虑直接在程序中写入汇编代码,只需要加上关键字“_asm”宏(C++代码中). 如下示例 编写环境 :v ...
- LDAP-轻量级目录访问协议(统一认证)
概念 LDAP是轻量目录访问协议,英文全称是Lightweight Directory Access Protocol,一般都简称为LDAP. 参考资料 LDAP概念和原理介绍 我花了一个五一终于搞懂 ...