Skip to content

Commit 88c8fff

Browse files
committed
BOJ_1455 : 뒤집기2
1 parent 1ae266e commit 88c8fff

File tree

1 file changed

+40
-0
lines changed

1 file changed

+40
-0
lines changed

week1/BOJ_1455(뒤집기 II).java

+40
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
import java.io.*;
2+
3+
public class Main {
4+
5+
public static void main(String[] args) throws IOException {
6+
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
7+
String[] num = br.readLine().split(" ");
8+
int N = Integer.parseInt(num[0]);
9+
int M = Integer.parseInt(num[1]);
10+
int[][] coin = new int[N][M];
11+
for (int i = 0; i < N; i++) {
12+
String input = br.readLine();
13+
for (int j = 0; j < M; j++) {
14+
coin[i][j] = input.charAt(j) - '0';
15+
}
16+
}
17+
int count = 0;
18+
for (int i = N-1; i >= 0; i--) {
19+
for (int j = M-1; j >= 0; j--) {
20+
if(coin[i][j] == 1) {
21+
flipCoin(coin, i, j);
22+
count++;
23+
}
24+
}
25+
}
26+
System.out.println(count);
27+
}
28+
29+
public static void flipCoin(int[][] coin, int a, int b) {
30+
for(int i=0; i<=a; i++) {
31+
for(int j=0; j<=b; j++) {
32+
if(coin[i][j] == 0) {
33+
coin[i][j] = 1;
34+
}else {
35+
coin[i][j] = 0;
36+
}
37+
}
38+
}
39+
}
40+
}

0 commit comments

Comments
 (0)