寒假每日一题 2022/1/5 双端bfs

题目
题意: 在二维坐标系中,初始位于(sx,sy)处,求到达原点(0,0)的最小花费。规定走平地花费为0,走一个障碍花费为1。给定n个barrier坐标(x,y),其余为平地.
思路: 双端bfs模板题。本题的实质是求一个图最短路,但是大概有n^2个边。用堆优化的Dij时间复杂度也很高。而双端bfs恰好可以解决此类问题,图中的边权均为0或1。只需要花O(n)的时间即可,n是点的总个数。
 基本思想与队列bfs一致。只是更新时,通过边权为0的边更新的点放到队首;而通过边权为1的边更新的点放到队尾。
时间复杂度: O(n)
代码:

// Problem: 拖拉机
// Contest: AcWing
// URL: https://www.acwing.com/problem/content/2021/
// Memory Limit: 64 MB
// Time Limit: 1000 ms
// 
// Powered by CP Editor (https://cpeditor.org)

#include<iostream>
#include<cstdio>
#include<algorithm>
#include<complex>
#include<cstring>
#include<cmath>
#include<vector>
#include<map>
#include<unordered_map>
#include<list>
#include<set>
#include<queue>
#include<stack>
#include<deque>
#define OldTomato ios::sync_with_stdio(false),cin.tie(nullptr),cout.tie(nullptr)
#define fir(i,a,b) for(int i=a;i<=b;++i) 
#define mem(a,x) memset(a,x,sizeof(a))
#define p_ priority_queue
// round() 四舍五入 ceil() 向上取整 floor() 向下取整
// lower_bound(a.begin(),a.end(),tmp,greater<ll>()) 第一个小于等于的
// #define int long long //QAQ
using namespace std;
typedef complex<double> CP;
typedef pair<int,int> PII;
typedef long long ll;
// typedef __int128 it;
const double pi = acos(-1.0);
const int INF = 0x3f3f3f3f;
const ll inf = 1e18;
const int N = 1e3+10;
const int M = 1e6+10;
const int mod = 1e9+7;
const double eps = 1e-6;
inline int lowbit(int x){ return x&(-x);}
template<typename T>void write(T x)
{
    if(x<0)
    {
        putchar('-');
        x=-x;
    }
    if(x>9)
    {
        write(x/10);
    }
    putchar(x%10+'0');
}
template<typename T> void read(T &x)
{
    x = 0;char ch = getchar();ll f = 1;
    while(!isdigit(ch)){if(ch == '-')f*=-1;ch=getchar();}
    while(isdigit(ch)){x = x*10+ch-48;ch=getchar();}x*=f;
}
int n,m,k,T;
int sx,sy;
bool st[N][N];
int dist[N][N];
int dx[] = {-1,0,1,0};
int dy[] = {0,1,0,-1};
int bfs()
{
	mem(dist,0x3f);
	dist[sx][sy] = 0;
	deque<PII> q;
	q.push_back({sx,sy});
	while(q.size())
	{
		auto tmp = q.front(); //从队首取,寻最短路
		q.pop_front();
		int x = tmp.first,y = tmp.second;
		if(x == 0 && y == 0) return dist[x][y];
		for(int i=0;i<4;++i)
		{
			int tx = x + dx[i];
			int ty = y + dy[i];
			if(tx < 0 || ty < 0 || tx >= N || ty >= N) continue;
			if(dist[tx][ty] <= dist[x][y] + st[tx][ty]) continue;
			dist[tx][ty] = dist[x][y] + st[tx][ty];
			if(st[tx][ty]) //边权为1,放入队尾
			{
				q.push_back({tx,ty});
			}
			else //边权为0
			{
				q.push_front({tx,ty});
			}
		}
	}
	return 0; 
}
void solve()
{
   read(n); read(sx),read(sy);
   for(int i=0;i<n;++i)
   {
      int x,y; read(x),read(y);
      st[x][y] = 1; //权值为1
   }
   cout<<bfs();
}
signed main(void)
{  
   T = 1;
   // OldTomato; cin>>T;
   // read(T);
   while(T--)
   {
   	 solve();
   }
   return 0;
}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值