-
Notifications
You must be signed in to change notification settings - Fork 102
/
Copy pathColoredRain.java
54 lines (50 loc) · 1.69 KB
/
ColoredRain.java
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
package colored_rain;
import java.io.FileReader;
import java.io.FileWriter;
import java.io.IOException;
import java.util.Scanner;
import java.util.StringTokenizer;
public class ColoredRain {
public static void main(String[] args) throws IOException {
int[][] matrix = new int[0][];
int[] color = new int[0];
int row = -1;
Scanner sc = new Scanner(new FileReader("input.txt"));
int rowCount = 0;
while (sc.hasNextLine()){
if(row == -1){
rowCount = Integer.valueOf(sc.nextLine());
matrix = new int[rowCount][rowCount];
}else if(row >= 0 && row < rowCount){
StringTokenizer st = new StringTokenizer(sc.nextLine(), " ");
int column = 0;
while (st.hasMoreTokens()){
matrix[row][column] = Integer.valueOf(st.nextToken());
column++;
}
}else {
StringTokenizer st = new StringTokenizer(sc.nextLine(), " ");
int column = 0;
color = new int[rowCount];
while (st.hasMoreTokens()){
color[column] = Integer.valueOf(st.nextToken());
column++;
}
}
row++;
}
int bad = 0;
for(int i = 0; i< rowCount; i++){
for(int j = i; j < rowCount; j++){
if(matrix[i][j] == 1){
if(color[i] != color[j]){
bad++;
}
}
}
}
FileWriter out = new FileWriter("output.txt");
out.write(String.valueOf(bad));
out.close();
}
}