-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathSolution.java
More file actions
110 lines (76 loc) · 2.32 KB
/
Solution.java
File metadata and controls
110 lines (76 loc) · 2.32 KB
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
package hackrank.algorithm.greedy.grid;
import java.io.InputStream;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
import java.util.Scanner;
/**
* Grid Challenge
*
* @see https://www.hackerrank.com/challenges/grid-challenge
*/
public class Solution {
public static void main(String[] args) {
for (Grid grid : readInput(System.in)) {
System.out.println((isColumnRowSortPossible(grid) ? "YES" : "NO"));
}
}
public static boolean isColumnRowSortPossible(Grid grid) {
for (char[] row : grid.matrix) {
Arrays.sort(row);
}
for (int columnIndex = 0; columnIndex < grid.size(); columnIndex++) {
if (!grid.isColumnSorted(columnIndex)) {
return false;
}
}
return true;
}
public static List<Grid> readInput(InputStream input) {
Scanner scanner = new Scanner(input);
int numberTests = scanner.nextInt();
List<Grid> grids = new ArrayList<>();
for (int t = 0; t < numberTests; t++) {
int size = scanner.nextInt();
char[][] matrix = new char[size][];
for (int i = 0; i < size; i++) {
matrix[i] = scanner.next().toCharArray();
}
grids.add(new Grid(matrix));
}
scanner.close();
return grids;
}
}
class Grid {
char[][] matrix;
Grid(char[][] matrix) {
this.matrix = matrix;
}
public int size() {
return matrix.length;
}
public boolean isColumnSorted(int columnIndex) {
for (int rowIndex = 1; rowIndex < matrix.length; rowIndex++) {
char prev = matrix[rowIndex - 1][columnIndex];
char current = matrix[rowIndex][columnIndex];
if (prev > current) {
return false;
}
}
return true;
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("Grid " + this.matrix.length + "x" + this.matrix.length + ":" + System.lineSeparator());
for (char[] row : matrix) {
sb.append("\t");
for (char c : row) {
sb.append(c + " ");
}
sb.append(System.lineSeparator());
}
return sb.toString();
}
}