参考代码:
#每个草丛只能是1个'#'或2个'#' dx = (-1, 0, 1, 0) dy = (0, -1, 0, 1) def f(x, y): map[x][y] = '.' for d in range(4): tx, ty = x + dx[d], y + dy[d] if 0 <= tx < row and 0 <= ty < column and map[tx][ty] == '#': map[tx][ty] = '.' return row, column = map(int, input().split()) map = [list(input().strip()) for _ in range(row)] res = 0 for i in range(row): for j in range(column): if map[i][j] == '#': f(i, j) res += 1 print(res)
0.0分
0 人评分
C语言训练-排序问题<2> (C++代码)(sort函数)浏览:1728 |
人见人爱A+B (C语言代码)浏览:665 |
简单的a+b (C语言代码)浏览:564 |
蛇行矩阵 (C语言代码)浏览:792 |
简单的a+b (C语言代码)浏览:641 |
本人酷爱递归实现很多问题,这里也是浏览:640 |
幸运数 (C++代码)浏览:1309 |
DNA (C语言代码)浏览:798 |
用筛法求之N内的素数。 (C语言代码)浏览:595 |
1231题解(注意理解“输入多个测试实例”)浏览:830 |