結果
問題 | No.430 文字列検索 |
ユーザー | masa |
提出日時 | 2020-02-27 02:32:00 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 163 ms / 2,000 ms |
コード長 | 1,184 bytes |
コンパイル時間 | 792 ms |
コンパイル使用メモリ | 82,908 KB |
実行使用メモリ | 26,496 KB |
最終ジャッジ日時 | 2024-11-10 00:41:09 |
合計ジャッジ時間 | 1,929 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 163 ms
26,496 KB |
testcase_02 | AC | 13 ms
5,248 KB |
testcase_03 | AC | 14 ms
5,248 KB |
testcase_04 | AC | 2 ms
5,248 KB |
testcase_05 | AC | 1 ms
5,248 KB |
testcase_06 | AC | 2 ms
5,248 KB |
testcase_07 | AC | 2 ms
5,248 KB |
testcase_08 | AC | 154 ms
26,240 KB |
testcase_09 | AC | 2 ms
5,248 KB |
testcase_10 | AC | 12 ms
5,760 KB |
testcase_11 | AC | 54 ms
7,296 KB |
testcase_12 | AC | 51 ms
7,552 KB |
testcase_13 | AC | 53 ms
7,424 KB |
testcase_14 | AC | 41 ms
6,016 KB |
testcase_15 | AC | 32 ms
5,248 KB |
testcase_16 | AC | 16 ms
5,248 KB |
testcase_17 | AC | 14 ms
5,248 KB |
ソースコード
#include <iostream> #include <cstdio> #include <vector> #include <algorithm> #include <utility> #include <string> #include <map> using namespace std; // Aに0を割り当てるとAAAとかでおかしくなるので、1を割り当てる const int N_CHAR = 27; string S; map<long long, int> hashes; long long calc_hash(string t) { long long x = 0; for (char c: t) { x = x * N_CHAR + (c - 'A' + 1); } return x; } void make_hashes(int len) { // printf("---make_hashes: len %d\n", len); if (len > S.size()) { return; } long long mod = 1; for (int i = 0; i < len; i++) { mod *= N_CHAR; } auto t = S.substr(0, len); // cout << t << endl; auto x = calc_hash(t); hashes[x]++; // printf("hash find: %15lld\n", x); for (int i = t.size(); i < S.size(); i++) { x = x * N_CHAR % mod + (S[i] - 'A' + 1); // printf("hash find: %15lld\n", x); hashes[x]++; } } int main() { string c; cin >> S; for (int i = 1; i <= 10; i++) { make_hashes(i); } int ans = 0; int m; cin >> m; for (int i = 0; i < m; i++) { cin >> c; auto x = calc_hash(c); ans += hashes[x]; // printf("c %10s: hash %15lld, add %3d\n", c.c_str(), x, hashes[x]); } cout << ans << endl; }