-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathMain.java
28 lines (23 loc) Β· 806 Bytes
/
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
package String.P1305;
import java.io.*;
public class Main {
public static void main(String[] args) throws Exception {
System.setIn(new FileInputStream("src/String/P1305/input.txt"));
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
int L = Integer.parseInt(br.readLine());
String s = br.readLine();
int[] pattern = makePk(s);
System.out.println(L - pattern[s.length()-1]);
}
private static int[] makePk(String s) {
int[] Pk = new int[s.length()];
int k = 0;
for (int i = 1; i < s.length(); i++) {
while (k > 0 && s.charAt(i) != s.charAt(k))
k = Pk[k-1];
if (s.charAt(i) == s.charAt(k))
Pk[i] = ++k;
}
return Pk;
}
}