結果
問題 | No.430 文字列検索 |
ユーザー | mikit |
提出日時 | 2019-09-27 19:02:25 |
言語 | Java21 (openjdk 21) |
結果 |
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 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 65 ms
38,228 KB |
testcase_01 | AC | 572 ms
42,196 KB |
testcase_02 | AC | 1,407 ms
42,264 KB |
testcase_03 | AC | 839 ms
42,264 KB |
testcase_04 | AC | 64 ms
37,048 KB |
testcase_05 | AC | 61 ms
37,812 KB |
testcase_06 | AC | 61 ms
37,492 KB |
testcase_07 | AC | 63 ms
37,676 KB |
testcase_08 | AC | 98 ms
39,020 KB |
testcase_09 | AC | 68 ms
38,144 KB |
testcase_10 | AC | 79 ms
38,812 KB |
testcase_11 | TLE | - |
testcase_12 | TLE | - |
testcase_13 | TLE | - |
testcase_14 | TLE | - |
testcase_15 | TLE | - |
testcase_16 | AC | 1,312 ms
42,372 KB |
testcase_17 | AC | 1,295 ms
42,128 KB |
ソースコード
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); } } } }