数学联邦政治世界观
超小超大

数学(四) (2-1)

flood fill能够在线性时间复杂度内,找到某个点所在的连通块。

四联通常用数组加一层循环判断

int dx[4] = {0, -1, 0, 1}, dy[4] = {-1, 0, 1, 0};

八联通常用二层循环遍历‬

tip:注意二层循环排除自己的情况

for (int i = t.x - 1; i <= t.x + 1; i ++ )

for (int j = t.y - 1; j <= t.y + 1; j ++ )

注意循环条件内的if特判,参考代码如下(应该是acwing1098)

include:<iostream>

include:<queue>

include:<utility>

using namespace std;

define:x first

define:y second

define:IOS ios::sync_with_stdio(false),cin.tie(0),cout.tie(0);

typedef pair<int,int> PII;

const int N=55;

queue<PII>q;

int g[N][N];

bool st[N][N];

int cnt=0, ss=0, n, m;

int dx[4] = {0, -1, 0, 1}, dy[4] = {-1, 0, 1, 0};

int bfs(int a, int b) {

q.push({a, b});

st[a][b]=true;

int area=0;

while(q.size()) {

auto t=ont();

q.pop();

area++;

for(int i=0; i<4; i++) {

int sx=t.x+dx[i], sy=t.y+dy[i];

if(sx<=0 || sy<=0 || sx>n || sy>m) continue;

if(g[t.x][t.y] >> i & 1) continue;

if(st[sx][sy]) continue;

q.push({sx, sy});

st[sx][sy]=true;

}

}

return area;

}

void solve() {

cin>>n>>m;

for(int i=1; i<=n; i++) {

for(int j=1; j<=m; j++) {

cin>>g[i][j];

}

}

数学联邦政治世界观提示您:看后求收藏(同人小说网http://tongren.me),接着再看更方便。

相关小说

幻实志忆 连载中
幻实志忆
无彩灰
实验品,主线簪不透露,只二字“轮回”
2.5万字1个月前
顾总历险记 连载中
顾总历险记
墨清愁
0.0万字1个月前
我画画进步史 连载中
我画画进步史
橘子茶o
0.0万字1个月前
重回溯源:盗墓之十七 连载中
重回溯源:盗墓之十七
迷失的人间
由于作者手痒把吴邪的图像改成杨好,由于人物图像改不过来,我又不想删书,大家就将就看【人物是三叔的,故事是我们的】十七只是一个代号,是十七条命......
19.4万字1个月前
青春残泪 连载中
青春残泪
欲望失宠的小可
阳光透过树叶的缝隙,如碎金般洒在宁静的校园小道上。这是新生入学的第一天,对于大多数人来说,充满了期待和憧憬,如同一幅绚丽的画卷。但对于楚悦瑶......
1.0万字1个月前
极航:探有 连载中
极航:探有
famy
20朵花花加更一章,10个金币加更一章,20个评论加更一章,开通一个会员加更一章,10个收藏加更一章
0.8万字1个月前