結果
| 問題 | No.430 文字列検索 |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2019-09-27 19:02:25 |
| 言語 | Java (openjdk 23) |
| 結果 |
TLE
(最新)
AC
(最初)
|
| 実行時間 | - |
| コード長 | 5,230 bytes |
| 記録 | |
| コンパイル時間 | 2,523 ms |
| コンパイル使用メモリ | 81,420 KB |
| 実行使用メモリ | 42,576 KB |
| 最終ジャッジ日時 | 2024-11-10 00:34:59 |
| 合計ジャッジ時間 | 20,299 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 4 |
| other | AC * 9 TLE * 5 |
ソースコード
import java.io.OutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.util.stream.IntStream;
import java.io.OutputStream;
import java.util.Arrays;
import java.io.BufferedWriter;
import java.io.IOException;
import java.io.InputStreamReader;
import java.io.UncheckedIOException;
import java.nio.charset.Charset;
import java.util.StringTokenizer;
import java.io.Writer;
import java.io.OutputStreamWriter;
import java.io.BufferedReader;
import java.io.InputStream;
/**
* Built using CHelper plug-in
* Actual solution is at the top
*
* @author mikit
*/
public class Main {
public static void main(String[] args) {
InputStream inputStream = System.in;
OutputStream outputStream = System.out;
LightScanner in = new LightScanner(inputStream);
LightWriter out = new LightWriter(outputStream);
FManySlimes solver = new FManySlimes();
solver.solve(1, in, out);
out.close();
}
static class FManySlimes {
public void solve(int testNumber, LightScanner in, LightWriter out) {
int[] s = in.string().chars().toArray();
int ans = 0, n = in.ints();
for (int i = 0; i < n; i++) {
KMP kmp = new KMP(in.string());
int offset = 0;
while (true) {
offset = kmp.search(s, offset);
if (offset == -1) break;
ans++;
offset++;
}
}
out.ans(ans).ln();
}
}
static class LightScanner {
private BufferedReader reader = null;
private StringTokenizer tokenizer = null;
public LightScanner(InputStream in) {
reader = new BufferedReader(new InputStreamReader(in));
}
public String string() {
if (tokenizer == null || !tokenizer.hasMoreTokens()) {
try {
tokenizer = new StringTokenizer(reader.readLine());
} catch (IOException e) {
throw new UncheckedIOException(e);
}
}
return tokenizer.nextToken();
}
public int ints() {
return Integer.parseInt(string());
}
}
static class KMP {
private final int n;
private final int[] target;
private final int[] table;
public KMP(int[] target) {
this.n = target.length;
this.target = Arrays.copyOf(target, n);
this.table = new int[n];
this.table[0] = -1;
int i = 2, j = 0;
while (i < n) {
if (this.target[i - 1] == this.target[j]) {
this.table[i] = ++j;
i++;
} else if (j > 0) {
j = this.table[j];
} else {
this.table[i] = 0;
i++;
}
}
}
public KMP(String target) {
this(target.chars().toArray());
}
public int search(int[] s, int offset) {
int m = offset, i = 0;
while (m + i < s.length) {
if (target[i] == s[m + i]) {
if (++i == n) return m;
} else {
m = m + i - table[i];
if (i > 0) i = table[i];
}
}
return -1;
}
}
static class LightWriter implements AutoCloseable {
private final Writer out;
private boolean autoflush = false;
private boolean breaked = true;
public LightWriter(Writer out) {
this.out = out;
}
public LightWriter(OutputStream out) {
this(new BufferedWriter(new OutputStreamWriter(out, Charset.defaultCharset())));
}
public LightWriter print(char c) {
try {
out.write(c);
breaked = false;
} catch (IOException ex) {
throw new UncheckedIOException(ex);
}
return this;
}
public LightWriter print(String s) {
try {
out.write(s, 0, s.length());
breaked = false;
} catch (IOException ex) {
throw new UncheckedIOException(ex);
}
return this;
}
public LightWriter ans(String s) {
if (!breaked) {
print(' ');
}
return print(s);
}
public LightWriter ans(int i) {
return ans(Integer.toString(i));
}
public LightWriter ln() {
print(System.lineSeparator());
breaked = true;
if (autoflush) {
try {
out.flush();
} catch (IOException ex) {
throw new UncheckedIOException(ex);
}
}
return this;
}
public void close() {
try {
out.close();
} catch (IOException ex) {
throw new UncheckedIOException(ex);
}
}
}
}