DSTJZ


私信TA

用户名:dotcpp0721777

访问量:9614

签 名:

时间可以解决许多问题

等  级
排  名 48
经  验 12122
参赛次数 13
文章发表 324
年  龄 18
在职情况 学生
学  校 狗熊岭23届毕业生
专  业

  自我简介:


参考代码:

from copy import deepcopy
dx = (-1, 0, 1, 0)
dy = (0, -1, 0, 1)


def judge(x, y):
    for d in range(4):
        tx, ty = x + dx[d], y + dy[d]
        if 0 <= tx < row and 0 <= ty < column:
            if arr[x][y] == 'R' and arr[tx][ty] == 'S':
                temp[tx][ty] = 'R'
            if arr[x][y] == 'S' and arr[tx][ty] == 'P':
                temp[tx][ty] = 'S'
            if arr[x][y] == 'P' and arr[tx][ty] == 'R':
                temp[tx][ty] = 'P'
    return


row, column, n = map(int, input().split())
arr = [list(input().strip()) for _ in range(row)]
temp = deepcopy(arr)

for k in range(n):
    for i in range(row):
        for j in range(column):
            judge(i, j)
    arr = deepcopy(temp)#本来我写的是交换两个列表引用,不对!
for i in range(row):
    for j in range(column):
        print(arr[i][j], end="")
    print()


 

0.0分

0 人评分

新上线《蓝桥杯辅导》课程,近五年的蓝桥杯省赛与国赛真题都有,从读题开始理解题意、梳理思路、实现代码再提交评测全过程,可有效提升获奖比例甚至进国赛!课程介绍、试听请猛击这里

  评论区

  • «
  • »