输出:
-1
class="hljs-button signin active" data-title="登录复制" data-report-click="{"spm":"1001.2101.3001.4334"}">
用例四:
输入:
YES NO NO YES
NO NO YES NO
NO YES NA NA
YES NO NA NO
class="hljs-button signin active" data-title="登录复制" data-report-click="{"spm":"1001.2101.3001.4334"}">
输出:
-1
class="hljs-button signin active" data-title="登录复制" data-report-click="{"spm":"1001.2101.3001.4334"}">
说明 右下角的区域,被周边三个死亡区挡住,无法实现改造
python解法
解题思路: 这道题可以视作 扩散模拟问题。具体来说,假设在一个矩阵中,每个单元格的值为 “YES” 或 “NO”(例如代表某种状态,如病人是否感染、区域是否被占领等)。我们需要计算让所有 “NO” 状态变为 “YES” 状态的最短天数,假设每次操作会将一个 “YES” 状态的周围相邻的 “NO” 状态变为 “YES”。
思路分析: 广度优先搜索 (BFS):
BFS 是一个典型的用于计算最短路径的算法,适合用来模拟从多个源节点开始的扩散过程。在本题中,多个 “YES” 状态可以作为起始点,通过 BFS 扩散,把 “NO” 变为 “YES”。 问题建模:
将每个 “YES” 单元格作为起始点放入队列。 对于每个节点,通过 BFS 扩展其相邻的 “NO” 状态。 每次扩展都会消耗一天,所以需要记录扩展的天数。 算法步骤:
遍历输入矩阵,将所有 “YES” 单元格的位置加入队列,同时统计 “NO” 的个数。 如果没有 “YES” 状态,返回 -1(无法扩散)。 如果所有的单元格一开始就是 “YES”,返回 0(无需扩散)。 使用 BFS 扩展,将相邻的 “NO” 状态变为 “YES” 并加入队列,直到队列为空或所有的 “NO” 都变为 “YES”。 最终,返回所需的天数,如果还有 “NO” 状态未被改变,返回 -1。
from collections import deque
def calculate_days ( grid) :
row, col = len ( grid) , len ( grid[ 0 ] )
queue = deque( )
remaining = 0
for i in range ( row) :
for j in range ( col) :
if grid[ i] [ j] == "YES" :
queue. append( ( i, j) )
elif grid[ i] [ j] == "NO" :
remaining += 1
if not queue:
return - 1
if remaining == 0 :
return 0
days = 0
directions = [ ( - 1 , 0 ) , ( 1 , 0 ) , ( 0 , - 1 ) , ( 0 , 1 ) ]
while queue and remaining:
days += 1
for _ in range ( len ( queue) ) :
x, y = queue. popleft( )
for dx, dy in directions:
nx, ny = x + dx, y + dy
if 0 <= nx < row and 0 <= ny < col and grid[ nx] [ ny] == "NO" :
grid[ nx] [ ny] = "YES"
queue. append( ( nx, ny) )
remaining -= 1
return days if remaining == 0 else - 1
matrix = [ ]
while True :
try :
matrix. append( input ( ) . split( ) )
except :
break
print ( calculate_days( matrix) )
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
java解法
解题思路 这道题目本质上是一个 扩散问题,可以通过 广度优先搜索(BFS) 来模拟状态的变化。给定一个矩阵,其中每个单元格的状态是 “YES” 或 “NO”。我们需要计算从 “YES” 状态开始扩散到 “NO” 状态的最短天数,直到所有 “NO” 状态变为 “YES”。
思路分析: 矩阵的初始化 :
我们首先要遍历输入的矩阵,找出所有的 “YES” 单元格并将其位置记录下来。这些 “YES” 状态的单元格就是扩散的起始点。 同时,我们需要统计 “NO” 状态的个数(toConvert),因为这些 “NO” 需要在最终变为 “YES”。 BFS 扩散过程:
对于每个 “YES” 状态的单元格,我们可以向其四个相邻的方向(上下左右)扩展。如果相邻单元格是 “NO”,那么将其变为 “YES”。 每次扩展代表了一天的过去,所以我们需要记录经过的天数。 处理边界情况:
如果没有 “YES” 状态单元格,则无法开始扩散,直接返回 -1。 如果一开始所有的单元格都是 “YES”,那么无需扩散,直接返回 0。 结果计算:
如果最终所有的 “NO” 都被成功转变为 “YES”,返回所需的天数。 如果队列为空但仍然有 “NO” 状态未被转变,说明无法完全扩散,返回 -1
import java. util. ArrayList ;
import java. util. Scanner ;
public class Main {
public static void main ( String [ ] args) {
Scanner sc = new Scanner ( System . in) ;
ArrayList < String [ ] > grid = new ArrayList < > ( ) ;
while ( sc. hasNextLine ( ) ) {
grid. add ( sc. nextLine ( ) . split ( " " ) ) ;
}
System . out. println ( calculateDays ( grid) ) ;
}
private static int calculateDays ( ArrayList < String [ ] > grid) {
int rows = grid. size ( ) ;
int cols = grid. get ( 0 ) . length;
ArrayList < int [ ] > positions = new ArrayList < > ( ) ;
int toConvert = 0 ;
for ( int i = 0 ; i < rows; i++ ) {
for ( int j = 0 ; j < cols; j++ ) {
String cell = grid. get ( i) [ j] ;
if ( "YES" . equals ( cell) ) {
positions. add ( new int [ ] { i, j} ) ;
} else if ( "NO" . equals ( cell) ) {
toConvert++ ;
}
}
}
if ( positions. size ( ) == 0 ) return - 1 ;
if ( positions. size ( ) == rows * cols) return 0 ;
int days = 0 ;
int [ ] [ ] directions = { { - 1 , 0 } , { 1 , 0 } , { 0 , - 1 } , { 0 , 1 } } ;
while ( positions. size ( ) > 0 && toConvert > 0 ) {
ArrayList < int [ ] > newPositions = new ArrayList < > ( ) ;
for ( int [ ] pos : positions) {
int row = pos[ 0 ] , col = pos[ 1 ] ;
for ( int [ ] direction : directions) {
int newRow = row + direction[ 0 ] ;
int newCol = col + direction[ 1 ] ;
if ( newRow >= 0 && newRow < rows && newCol >= 0 && newCol < cols
&& "NO" . equals ( grid. get ( newRow) [ newCol] ) ) {
grid. get ( newRow) [ newCol] = "YES" ;
newPositions. add ( new int [ ] { newRow, newCol} ) ;
toConvert-- ;
}
}
}
days++ ;
positions = newPositions;
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 84
C++解法
更新中
class="hljs-button signin active" data-title="登录复制" data-report-click="{"spm":"1001.2101.3001.4334"}">
C解法
更新中
class="hljs-button signin active" data-title="登录复制" data-report-click="{"spm":"1001.2101.3001.4334"}">
JS解法
思路分析: 初始化矩阵:
我们首先读取输入的矩阵,并将其存储在一个二维数组 grid 中。矩阵中有两个可能的状态:“YES” 和 “NO”。 找出所有 “YES” 的位置:
我们遍历整个矩阵,记录所有 “YES” 单元格的位置,将其添加到 positions 数组中。这些 “YES” 单元格会是扩散的源头。 统计 “NO” 的数量:
同时,我们统计矩阵中 “NO” 单元格的数量,这个值存储在 toConvert 中。因为每个 “NO” 都需要通过扩散转换为 “YES”。 BFS 扩散过程:
我们使用 广度优先搜索(BFS) 来模拟 “YES” 状态的扩散过程。每次扩散代表一天的过去,新的 “YES” 状态会扩展到其四个相邻的 “NO” 单元格(上下左右)。 通过 BFS,可以确保我们按层次逐步扩展,并记录所需的天数。 处理边界情况:
如果没有 “YES” 单元格,则无法进行扩散,返回 -1。 如果一开始所有单元格都是 “YES”,则直接返回 0。 返回结果:
如果最终所有的 “NO” 状态都变为 “YES”,返回所需的天数。 如果队列为空,但仍然有 “NO” 状态没有变为 “YES”,则返回 -1,表示无法完全扩散
const readline = require ( "readline" ) ;
const rl = readline. createInterface ( {
input : process. stdin,
output : process. stdout,
} ) ;
const input = [ ] ;
rl. on ( "line" , ( line ) => {
input. push ( line) ;
} ) . on ( "close" , ( ) => {
const grid = input. map ( line => line. split ( " " ) ) ;
console. log ( calculateDays ( grid) ) ;
} ) ;
function calculateDays ( grid ) {
const rows = grid. length;
const cols = grid[ 0 ] . length;
let positions = [ ] ;
let toConvert = 0 ;
for ( let i = 0 ; i < rows; i++ ) {
for ( let j = 0 ; j < cols; j++ ) {
const cell = grid[ i] [ j] ;
if ( cell === "YES" ) {
positions. push ( [ i, j] ) ;
} else if ( cell === "NO" ) {
toConvert++ ;
}
}
}
if ( positions. length === 0 ) return - 1 ;
if ( positions. length === rows * cols) return 0 ;
let days = 0 ;
const directions = [
[ - 1 , 0 ] , [ 1 , 0 ] , [ 0 , - 1 ] , [ 0 , 1 ]
] ;
while ( positions. length > 0 && toConvert > 0 ) {
let newPositions = [ ] ;
for ( let pos of positions) {
const [ row, col] = pos;
for ( let [ dRow, dCol] of directions) {
const newRow = row + dRow;
const newCol = col + dCol;
if ( newRow >= 0 && newRow < rows && newCol >= 0 && newCol < cols && grid[ newRow] [ newCol] === "NO" ) {
grid[ newRow] [ newCol] = "YES" ;
newPositions. push ( [ newRow, newCol] ) ;
toConvert-- ;
}
}
}
days++ ;
positions = newPositions;
}
return toConvert === 0 ? days : - 1 ;
}
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
注意:
如果发现代码有用例覆盖不到的情况,欢迎反馈!会在第一时间修正,更新。 解题不易,如对您有帮助,欢迎点赞/收藏
评论记录:
回复评论: