-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathMain.java
57 lines (48 loc) Β· 1.6 KB
/
Main.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
55
56
57
package DAC.P10830;
import java.io.*;
import java.util.*;
public class Main {
static int N;
static long B;
static int[][] mat;
final static int MOD = 1000;
public static void main(String[] args) throws Exception {
System.setIn(new FileInputStream("src/DAC/P10830/input.txt"));
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
StringTokenizer st = new StringTokenizer(br.readLine());
N = Integer.parseInt(st.nextToken());
B = Long.parseLong(st.nextToken());
mat = new int[N][N];
for (int i = 0; i < N; i++) {
st = new StringTokenizer(br.readLine());
for (int j = 0; j < N; j++) {
mat[i][j] = Integer.parseInt(st.nextToken()) % MOD;
}
}
int[][] res = calc(B);
StringBuilder sb = new StringBuilder();
for (int i = 0; i < N; i++) {
for (int j = 0; j < N; j++) sb.append(res[i][j]).append(" ");
sb.append("\n");
}
System.out.print(sb);
}
static int[][] calc(long b) {
if (b == 1L) return mat;
if (b % 2 == 1) return product(mat, calc(b-1));
int[][] res = calc(b/2);
return product(res, res);
}
static int[][] product(int[][] A, int[][] B) {
int[][] res = new int[N][N];
for (int i = 0; i < N; i++) {
for (int j = 0; j < N; j++) {
for (int k = 0; k < N; k++) {
res[i][j] += A[i][k] * B[k][j];
res[i][j] %= MOD;
}
}
}
return res;
}
}