結果
問題 | No.430 文字列検索 |
ユーザー | yaoshimax |
提出日時 | 2016-10-03 09:36:13 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 146 ms / 2,000 ms |
コード長 | 719 bytes |
コンパイル時間 | 504 ms |
コンパイル使用メモリ | 70,228 KB |
実行使用メモリ | 26,368 KB |
最終ジャッジ日時 | 2024-08-15 16:08:40 |
合計ジャッジ時間 | 1,651 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 5 ms
6,812 KB |
testcase_01 | AC | 1 ms
6,940 KB |
testcase_02 | AC | 146 ms
26,368 KB |
testcase_03 | AC | 7 ms
6,944 KB |
testcase_04 | AC | 6 ms
6,944 KB |
testcase_05 | AC | 1 ms
6,940 KB |
testcase_06 | AC | 1 ms
6,944 KB |
testcase_07 | AC | 1 ms
6,944 KB |
testcase_08 | AC | 1 ms
6,940 KB |
testcase_09 | AC | 144 ms
26,240 KB |
testcase_10 | AC | 2 ms
6,944 KB |
testcase_11 | AC | 11 ms
6,940 KB |
testcase_12 | AC | 60 ms
7,424 KB |
testcase_13 | AC | 59 ms
7,424 KB |
testcase_14 | AC | 60 ms
7,552 KB |
testcase_15 | AC | 46 ms
6,944 KB |
testcase_16 | AC | 36 ms
6,944 KB |
testcase_17 | AC | 10 ms
6,948 KB |
testcase_18 | AC | 8 ms
6,940 KB |
ソースコード
#include <iostream> #include <vector> #include <string> #include <map> using namespace std; int main(){ string S; cin >> S; int M; cin >> M; int ans = 0; int len = S.size(); map<long long, int> cnt; for( int i = 0 ; i < len; i++){ long long hash = 0; for( int j = 0; j < 10 && i+j <len; j++){ hash*=27; hash+=S[i+j]-'A'+1; cnt[hash]++; } } for( int i = 0 ; i < M; i++){ string C; cin >> C; int size=C.size(); long long hash=0; long long offset=1LL; for( int j = 0 ; j < size; j++ ){ hash*=27; hash+=C[j]-'A'+1; offset*=27; } ans+=cnt[hash]; } cout << ans << endl; }