結果
問題 | No.430 文字列検索 |
ユーザー | noisy_noimin |
提出日時 | 2019-11-21 13:34:01 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 778 bytes |
コンパイル時間 | 614 ms |
コンパイル使用メモリ | 65,280 KB |
実行使用メモリ | 10,496 KB |
最終ジャッジ日時 | 2024-11-10 00:37:55 |
合計ジャッジ時間 | 23,024 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
10,496 KB |
testcase_01 | TLE | - |
testcase_02 | TLE | - |
testcase_03 | TLE | - |
testcase_04 | AC | 2 ms
5,248 KB |
testcase_05 | AC | 2 ms
5,248 KB |
testcase_06 | AC | 2 ms
5,248 KB |
testcase_07 | AC | 2 ms
5,248 KB |
testcase_08 | AC | 1,742 ms
7,680 KB |
testcase_09 | AC | 2 ms
5,248 KB |
testcase_10 | AC | 18 ms
5,248 KB |
testcase_11 | TLE | - |
testcase_12 | TLE | - |
testcase_13 | TLE | - |
testcase_14 | TLE | - |
testcase_15 | TLE | - |
testcase_16 | TLE | - |
testcase_17 | -- | - |
ソースコード
#include <iostream> #include <string> using namespace std; using ll = long long; constexpr ll BASE = 26; int main() { string s; cin >> s; int n = s.length(); ll hash[n][11]; for(int i=0;i<n;++i){ hash[i][1] = ll(s[i]-'A'); for(int j=2;j<=n-i;++j) { hash[i][j] = hash[i][j-1] * BASE + ll(s[i+j-1]-'A'); } } int m, cnt = 0; cin >> m; string c; for(int i=0;i<m;++i){ cin >> c; int nc = c.length(); ll c_hash = ll(c[0]-'A'); for(int j=1;j<nc;++j) { c_hash = c_hash * BASE + ll(c[j]-'A'); } for(int j=0;j<=n-nc;++j) { if(hash[j][nc] == c_hash) { ++cnt; } } } cout << cnt << endl; }