博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
POJ-2329 Nearest number - 2(BFS)
阅读量:5163 次
发布时间:2019-06-13

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

Nearest number - 2

Time Limit: 5000MS Memory Limit: 65536K
Total Submissions: 4100 Accepted: 1275
Description

Input is the matrix A of N by N non-negative integers.

A distance between two elements Aij and Apq is defined as |i − p| + |j − q|.

Your program must replace each zero element in the matrix with the nearest non-zero one. If there are two or more nearest non-zeroes, the zero must be left in place.

Constraints
1 ≤ N ≤ 200, 0 ≤ Ai ≤ 1000000
Input

Input contains the number N followed by N2 integers, representing the matrix row-by-row.

Output

Output must contain N2 integers, representing the modified matrix row-by-row.

Sample Input

3

0 0 0
1 0 2
0 3 0
Sample Output

1 0 2

1 0 2
0 3 0

有DP的方法,效率是O(n^2),但是我想不出,也没看到有博客是用DP,所以就暴力了。

#include 
#include
#include
#include
#include
#include
using namespace std;int a[205][205];int b[205][205];int vis[205][205];int dir[4][2]={ { 1,0},{ 0,1},{-1,0},{ 0,-1}};int n;int c[405];int d[405];struct Node{ int x,y;};void bfs(int x,int y){ Node Q[40005]; int rear=0,front=0; int flag=0,level=9999999; //Queue.push(Node(x,y)); Node term; term.x=x; term.y=y; Q[rear++]=term; vis[x][y]=1; while(rear!=front&&flag!=-1) { // Node temp=Queue.front(); //Queue.pop(); Node temp=Q[front++]; if(level<=vis[temp.x][temp.y]) break; for(int i=0;i<4;i++) { int xx=temp.x+dir[i][0]; int yy=temp.y+dir[i][1]; if(xx<0||xx>n-1||yy<0||yy>n-1||vis[xx][yy]) continue; vis[xx][yy]=vis[temp.x][temp.y]+1; if(a[xx][yy]!=0) { if(!flag) { flag=a[xx][yy]; level=vis[xx][yy]; } else { flag=-1; break; } } //Queue.push(Node(xx,yy)); else { Node item; item.x=xx; item.y=yy; Q[rear++]=item; } } } if(flag>0) b[x][y]=flag;}void init(){ memset(vis,0,sizeof(vis)); memset(c,0,sizeof(c));}int main(){ while(scanf("%d",&n)!=EOF) { for(int i=0;i

转载于:https://www.cnblogs.com/dacc123/p/8228810.html

你可能感兴趣的文章
跟着辛星用PHP的反射机制来实现插件
查看>>
Android应用开发-网络编程①
查看>>
input中的name,value以及label中的for
查看>>
静态库制作-混编(工程是oc为基础)
查看>>
jQuery 显示加载更多
查看>>
代理模式
查看>>
Confluence 6 系统运行信息中的 JVM 内存使用情况
查看>>
Confluence 6 升级以后
查看>>
用JS实现版面拖拽效果
查看>>
二丶CSS
查看>>
《avascript 高级程序设计(第三版)》 ---第二章 在HTML中使用Javascript
查看>>
JS一些概念知识及参考链接
查看>>
TCP/IP协议原理与应用笔记24:网际协议(IP)之 IP协议的简介
查看>>
SAP HANA开发中常见问题- 基于SAP HANA平台的多团队产品研发
查看>>
游戏中的心理学(一):认知失调有前提条件
查看>>
WHAT I READ FOR DEEP-LEARNING
查看>>
【Ruby】Ruby在Windows上的安装
查看>>
Objective C 总结(十一):KVC
查看>>
BZOJ 3747 洛谷 3582 [POI2015]Kinoman
查看>>
vue实战(7):完整开发登录页面(一)
查看>>