java解法
解题思路 问题描述 给定一个二维网格,每个位置可能为以下几种情况:
0 表示无信号覆盖区域。 正整数表示信号源,数值越大,信号越强。 信号可以向上下左右传播,且每传播一步信号减弱 1。传播到信号值为 0 时停止。需要确定目标位置的信号强度。
算法设计 使用 广度优先搜索(BFS) 算法模拟信号传播的过程:
遍历网格,找到所有信号源,将其加入 BFS 队列。 从队列中取出信号源,向其上下左右的方向传播信号,直到信号减弱为 0。 最终得到目标位置的信号强度。 输入输出格式
输入:网格大小 m x n,信号源及其强度,以及目标位置的坐标。 输出:目标位置的信号强度。
import java. util. * ;
public class Main {
public static void main ( String [ ] args) {
Scanner input = new Scanner ( System . in) ;
int m = input. nextInt ( ) ;
int n = input. nextInt ( ) ;
int [ ] [ ] grid = new int [ m] [ n] ;
Queue < int [ ] > queue = new LinkedList < > ( ) ;
int signalX = - 1 , signalY = - 1 ;
for ( int i = 0 ; i < m; i++ ) {
for ( int j = 0 ; j < n; j++ ) {
grid[ i] [ j] = input. nextInt ( ) ;
if ( grid[ i] [ j] > 0 ) {
signalX = i;
signalY = j;
queue. offer ( new int [ ] { i, j, grid[ i] [ j] } ) ;
}
}
}
int targetX = input. nextInt ( ) ;
int targetY = input. nextInt ( ) ;
System . out. println ( bfs ( grid, m, n, queue, targetX, targetY) ) ;
}
public static int bfs ( int [ ] [ ] grid, int m, int n, Queue < int [ ] > queue, int targetX, int targetY) {
int [ ] [ ] directions = { { - 1 , 0 } , { 1 , 0 } , { 0 , - 1 } , { 0 , 1 } } ;
while ( ! queue. isEmpty ( ) ) {
int [ ] current = queue. poll ( ) ;
int x = current[ 0 ] , y = current[ 1 ] , signal = current[ 2 ] ;
for ( int [ ] dir : directions) {
int newX = x + dir[ 0 ] ;
int newY = y + dir[ 1 ] ;
if ( newX >= 0 && newX < m && newY >= 0 && newY < n && grid[ newX] [ newY] == 0 ) {
grid[ newX] [ newY] = signal - 1 ;
if ( signal - 1 > 0 ) {
queue. offer ( new int [ ] { newX, newY, signal - 1 } ) ;
}
}
}
}
return grid[ targetX] [ targetY] ;
}
}
class="hljs-button signin active" data-title="登录复制" data-report-click="{"spm":"1001.2101.3001.4334"}">
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83
C++解法
使用 广度优先搜索(BFS) 模拟信号传播: 找到所有信号源,初始化 BFS 队列。 从信号源开始,依次向上下左右传播信号,更新网格中各位置的信号强度。 如果信号传播到目标位置 (tx, ty),记录其信号值。 由于 BFS 会按照距离由近及远的顺序进行遍历,保证每个位置的信号强度为其最强值。
# include
# include
# include
using namespace std;
int main ( ) {
int m, n;
cin >> m >> n;
vector< int > nums ( m * n) ;
for ( int i = 0 ; i < m * n; i++ ) {
cin >> nums[ i] ;
}
int tx, ty;
cin >> tx >> ty;
vector< vector< int >> grid ( m, vector < int > ( n) ) ;
vector< pair< int , int >> sources;
for ( int i = 0 ; i < m; i++ ) {
for ( int j = 0 ; j < n; j++ ) {
grid[ i] [ j] = nums[ i * n + j] ;
if ( grid[ i] [ j] > 0 ) {
sources. push_back ( { i, j} ) ;
}
}
}
vector< pair< int , int >> directions = { { 1 , 0 } , { - 1 , 0 } , { 0 , 1 } , { 0 , - 1 } } ;
queue< pair< int , int >> q;
for ( auto & source : sources) {
q. push ( source) ;
}
while ( ! q. empty ( ) ) {
auto [ x, y] = q. front ( ) ;
q. pop ( ) ;
for ( auto & [ dx, dy] : directions) {
int nx = x + dx, ny = y + dy;
if ( nx >= 0 && nx < m && ny >= 0 && ny < n && grid[ nx] [ ny] == 0 ) {
grid[ nx] [ ny] = grid[ x] [ y] - 1 ;
if ( grid[ nx] [ ny] > 0 ) {
q. push ( { nx, ny} ) ;
}
}
}
}
cout << grid[ tx] [ ty] << endl;
return 0 ;
}
class="hljs-button signin active" data-title="登录复制" data-report-click="{"spm":"1001.2101.3001.4334"}">
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66
C解法
class="hljs-button signin active" data-title="登录复制" data-report-click="{"spm":"1001.2101.3001.4334"}">
JS解法
给定一个二维网格,包含以下类型的值: 0 表示无信号区域; 正整数表示信号源,其值越大,信号强度越高。 信号可以向上下左右传播,每传播一步信号值减 1,直至信号值为 0 时停止传播。 输入目标位置 (tx, ty),输出该位置的信号强度。 算法设计
采用 广度优先搜索(BFS) 模拟信号的传播过程: 初始化信号源队列 sources,将所有信号源的位置加入队列。 遍历队列中的每个信号源,向其上下左右的方向传播信号: 若某位置信号值尚未覆盖(为 0),则更新该位置信号值为 当前信号 - 1; 若更新后的信号值仍大于 0,将该位置加入队列以继续传播。 循环直至所有信号源的传播结束。 输入输出格式
输入: 第一行:网格的行数 m 和列数 n; 第二行:一维数组表示网格中的信号值; 第三行:目标位置 (tx, ty)。 输出:目标位置的信号强度。 流程
将一维数组转为二维网格; 将所有信号源记录为队列的初始状态; 使用 BFS 模拟信号传播过程; 输出目标位置的信号值
const readline = require ( 'readline' ) ;
const rl = readline. createInterface ( {
input : process. stdin,
output : process. stdout,
} ) ;
const input = [ ] ;
rl. on ( 'line' , ( line ) => {
input. push ( line) ;
if ( input. length === 3 ) {
const [ m, n] = input[ 0 ] . split ( ' ' ) . map ( Number) ;
const nums = input[ 1 ] . split ( ' ' ) . map ( Number) ;
const [ tx, ty] = input[ 2 ] . split ( ' ' ) . map ( Number) ;
const grid = [ ] ;
let sources = [ ] ;
for ( let i = 0 ; i < m; i++ ) {
grid. push ( nums. slice ( i * n, ( i + 1 ) * n) ) ;
for ( let j = 0 ; j < n; j++ ) {
if ( grid[ i] [ j] > 0 ) sources. push ( [ i, j] ) ;
}
}
const directions = [ [ 1 , 0 ] , [ - 1 , 0 ] , [ 0 , 1 ] , [ 0 , - 1 ] ] ;
while ( sources. length) {
const [ x, y] = sources. shift ( ) ;
for ( const [ dx, dy] of directions) {
const nx = x + dx, ny = y + dy;
if ( nx >= 0 && nx < m && ny >= 0 && ny < n && grid[ nx] [ ny] === 0 ) {
grid[ nx] [ ny] = grid[ x] [ y] - 1 ;
if ( grid[ nx] [ ny] > 0 ) sources. push ( [ nx, ny] ) ;
}
}
}
console. log ( grid[ tx] [ ty] ) ;
rl. close ( ) ;
}
} ) ;
class="hljs-button signin active" data-title="登录复制" data-report-click="{"spm":"1001.2101.3001.4334"}">
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58
注意:
如果发现代码有用例覆盖不到的情况,欢迎反馈!会在第一时间修正,更新。 解题不易,如对您有帮助,欢迎点赞/收藏
评论记录:
回复评论: