일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- MYSQL
- 스포티파이
- Computer Science
- CS
- 프로그래머스
- 자바
- 백준
- SW Expert Academy
- C++
- 파이썬
- regression
- 회귀
- Gem
- java
- python
- SECS/GEM
- spring boot
- SWEA
- Spring
- SECS
- modern c++
- Baekjoon
- 회원가입
- 비트겟
- Spotify Api
- Spring JPA
- programmers
- c
- spotify
- SECS-II
Archives
- Today
- Total
비버놀로지
[BAEKJOON 백준] 1236 성 지키기 본문
728x90
첫째 줄에 성의 세로 크기 N과 가로 크기 M이 주어진다. N과 M은 50보다 작거나 같은 자연수이다. 둘째 줄부터 N개의 줄에는 성의 상태가 주어진다. 성의 상태는 .은 빈칸, X는 경비원이 있는 칸이다.
먼저 입력값을 배열로 만들어 준다.
먼저 한 행에 경비원이 있는지 확인을 한다. check 라는 boolean 을 만들어 줘서 한 행에 경비원이 없다면 행에 카운트를 1 올려준다.
그렇게 끝까지 확인을 하고 다음은 열로 바꿔서 한 열에 경비원이 없다면 열 카운트를 올려준다. 그렇게 두 카운트를 비교를 해서 더 큰수를 출력해 준다.
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner sc=new Scanner(System.in);
int N=sc.nextInt();
int M=sc.nextInt();
char arr[][]=new char[N][M];
int cntN=0;
int cntM=0;
for (int i = 0; i < N; i++) {
String s=sc.next();
arr[i]=s.toCharArray();
}
for (int i = 0; i < N; i++) {
boolean check = false;
for (int j = 0; j < M; j++) {
if(arr[i][j]!='.') {
check=true;
}
}
if(!check)cntN++;
}
for (int i = 0; i < M; i++) {
boolean check = false;
for (int j = 0; j < N; j++) {
if(arr[j][i]!='.') {
check=true;
}
}
if(!check)cntM++;
}
System.out.println(Math.max(cntN, cntM));
}
}
728x90
'ALGORITM > JAVA' 카테고리의 다른 글
[BAEKJOON 백준] 1260 DFS와 BFS (0) | 2021.01.10 |
---|---|
[BAEKJOON 백준] 1244 스위치 켜고 끄기 (0) | 2021.01.10 |
[BAEKJOON 백준] 1212 8진수 2진수 (0) | 2021.01.10 |
[BAEKJOON 백준] 1157 단어 공부 (0) | 2021.01.10 |
[BAEKJOON 백준] 1110 더하기 사이클 (0) | 2021.01.10 |
Comments