ps | |
---|---|
링크 | acmicpc.net/… |
출처 | BOJ |
문제 번호 | 16956 |
문제명 | 늑대와 양 |
레벨 | 실버 3 |
분류 |
애드혹 |
시간복잡도 | O(n*m) |
인풋사이즈 | n<=500, m<=500 |
사용한 언어 | Python |
제출기록 | 31084KB / 96ms |
최고기록 | 80ms |
해결날짜 | 2022/09/22 |
"""Solution code for "BOJ 16956. 늑대와 양".
- Problem link: https://www.acmicpc.net/problem/16956
- Solution link: http://www.teferi.net/ps/problems/boj/16956
Tags: [Ad hoc]
"""
def main():
R, C = [int(x) for x in input().split()] # pylint: disable=unused-variable
board = [input() for _ in range(R)]
for row in board:
if 'SW' in row or 'WS' in row:
print('0')
return
for col in zip(*board):
col = ''.join(col)
if 'SW' in col or 'WS' in col:
print('0')
return
print('1')
print('\n'.join(row.replace('.', 'D') for row in board))
if __name__ == '__main__':
main()