반응형
문제
영식이는 직사각형 모양의 성을 가지고 있다. 성의 1층은 몇 명의 경비원에 의해서 보호되고 있다. 영식이는 모든 행과 모든 열에 한 명 이상의 경비원이 있으면 좋겠다고 생각했다.
성의 크기와 경비원이 어디있는지 주어졌을 때, 몇 명의 경비원을 최소로 추가해야 영식이를 만족시키는지 구하는 프로그램을 작성하시오.
입력
첫째 줄에 성의 세로 크기 N과 가로 크기 M이 주어진다. N과 M은 50보다 작거나 같은 자연수이다. 둘째 줄부터 N개의 줄에는 성의 상태가 주어진다. 성의 상태는 .은 빈칸, X는 경비원이 있는 칸이다.
출력
첫째 줄에 추가해야 하는 경비원의 최솟값을 출력한다.
문제 풀이 핵심 아이디어
- 모든 행과 모든 열에 한 명 이상의 경비원이 있어야한다.
- 행기준, 열기준으로 필요한 경비원의 수를 각각 계산해 더 큰 수를 출력한다.
N, M = map(int, input().split()) # row , dolumn
maps=[]
for _ in range(N):
maps.append(list(input()))
empty_row=[]
empty_column=[]
for m in range(N):
if ''.join(maps[m]) =='.'*M:
# print('.'*M)
empty_row.append(m)
#for n in range(N):
for n in range(M): # column
dragon4=True
for m in range(N): # row
# print(m,n)
if maps[m][n]!='.':
dragon4=False
else:
continue
if dragon4:
empty_column.append(n)
#print(empty_row)
#print(empty_column)
print(max(len(empty_column), len(empty_row)))
n, m = map(int, input().split())
array=[]
for _ in range(n):
array.append(input())
row =[0]*n
column =[0]*m
for i in range(n):
for j in range(m):
if array[i][j] =='X':
row[i]=1
column[j]=1
row_count = 0
for i in range(n):
if row[i] ==0:
row_count+=1
column_count =0
for j in range(m):
if column[j] ==0:
column_count+=1
print(max(row_count, column_count))
반응형
'알고리즘' 카테고리의 다른 글
코딜리티 BinaryGap 파이썬 :level 1 (0) | 2020.10.03 |
---|---|
백준 1939번 중량제한 파이썬 (0) | 2020.10.03 |
백준 1668번 트로피 진열 파이썬 (0) | 2020.10.01 |
백준 1302번 베스트셀러 파이썬 (0) | 2020.10.01 |
백준 1568번 새 파이썬 (0) | 2020.10.01 |