-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path[1786] 찾기
57 lines (46 loc) · 1.11 KB
/
[1786] 찾기
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
import java.util.ArrayList;
import java.util.Scanner;
public class Main {
static ArrayList<Integer> list = new ArrayList<>();
public static void main(String[] args) throws Exception {
Scanner sc = new Scanner(System.in);
String T = sc.nextLine();
String P = sc.nextLine();
int[] Pi = new int[P.length()];
// Pi 구하기
int s = 0;
// 인덱스 1부터 비교
for(int e=1; e<P.length(); e++) {
while(s>0 && P.charAt(s) != P.charAt(e)) {
s = Pi[s - 1];
}
if(P.charAt(s) == P.charAt(e)) {
Pi[e] = ++s;
}
}
getResult(T, P, Pi);
System.out.println(list.size());
for(int i=0; i<list.size(); i++) {
System.out.print(list.get(i) + " ");
}
}
public static void getResult(String t, String p, int[] pi) {
// p의 위치
int j=0;
for(int i=0; i<t.length(); i++) {
// 같은 문자 찾을때까지
while(j>0 && t.charAt(i) != p.charAt(j)) {
j = pi[j - 1];
}
if(t.charAt(i) == p.charAt(j)) {
// 문자열이 같다면
if(j == p.length() - 1) {
list.add(i - p.length() + 2);
j = pi[j];
} else {
j++;
}
}
}
}
}