File tree 1 file changed +40
-0
lines changed
1 file changed +40
-0
lines changed Original file line number Diff line number Diff line change
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
+ }
You can’t perform that action at this time.
0 commit comments