-
Notifications
You must be signed in to change notification settings - Fork 3
/
shell_rotate.java
45 lines (32 loc) · 925 Bytes
/
shell_rotate.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
import java.util.*;
import java.io.*;
public class shell_rotate {
public static void main(String args[]) throws Exception{
Scanner scn = new Scanner(System.in);
int n = scn.nextInt();
int m = scn.nextInt();
int[][] arr = new int[n][m];
for(int i = 0; i < arr.length; i++){
for(int j = 0; j < arr[0].length; j++){
arr[i][j] = scn.nextInt();
}
}
int s = scn.nextInt(); // shell_rotate
int r = scn.nextInt(); // rotation_frequency
rotateShell(arr, s, r);
display(arr);
}
public static void rotateShell(int[][] arr, int s, int r){
int oned = fillOnedFromShell(arr, s);
rotate(oned, r);
fillShellFromOned(arr, oned, s);
}
public static void display(int[][] arr){
for(int i = 0; i < arr.length; i++){
for(int j = 0; j < arr[0].length; j++){
System.out.print(arr[i][j] + " ");
}
System.out.println();
}
}
}