728x90
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 32 33 34 35 36 37 38 39 | public static void main(String[] args) { // TODO Auto-generated method stub Scanner sc = new Scanner(System.in); int N = sc.nextInt(); int M = sc.nextInt(); int answer=0; boolean[][] map = new boolean[N][M]; for(int j=0; j<M; j++) { int input = sc.nextInt(); for(int i=0; i<input; i++) { map[i][j]=true; } } for(int i=0; i<N; i++) { Loop2 : for(int j=0; j<M; j++) { if (!map[i][j]) { int pre = j; while(pre>=0) { if(map[i][pre]) break; if(pre==0) continue Loop2; pre--; } pre=j; while(pre<M) { if(map[i][pre]) break; if(pre==M-1) continue Loop2; pre++; } answer++; } } } System.out.println(answer); } | cs |
'알고리즘 풀이 > 백준' 카테고리의 다른 글
[백준][Java] 1157번 단어 공부 (0) | 2021.06.26 |
---|---|
[백준][Java] 16205번 변수명 (0) | 2019.12.14 |
[백준][Java] 2493번 탑 (0) | 2019.12.11 |
[백준][Java] 14499번 주사위 (0) | 2019.03.28 |
[백준][Java] 9935번 문자열 폭발 (0) | 2019.03.25 |