結果

問題 No.430 文字列検索
ユーザー alpha_virginisalpha_virginis
提出日時 2016-12-14 16:07:02
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 312 ms / 2,000 ms
コード長 1,212 bytes
コンパイル時間 1,886 ms
コンパイル使用メモリ 175,604 KB
実行使用メモリ 26,752 KB
最終ジャッジ日時 2024-11-10 00:13:01
合計ジャッジ時間 3,330 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 312 ms
26,752 KB
testcase_02 AC 8 ms
6,816 KB
testcase_03 AC 10 ms
6,816 KB
testcase_04 AC 2 ms
6,816 KB
testcase_05 AC 1 ms
6,816 KB
testcase_06 AC 2 ms
6,816 KB
testcase_07 AC 2 ms
6,820 KB
testcase_08 AC 293 ms
26,624 KB
testcase_09 AC 2 ms
6,816 KB
testcase_10 AC 18 ms
6,816 KB
testcase_11 AC 116 ms
7,680 KB
testcase_12 AC 113 ms
7,680 KB
testcase_13 AC 123 ms
7,808 KB
testcase_14 AC 96 ms
6,816 KB
testcase_15 AC 74 ms
6,816 KB
testcase_16 AC 15 ms
6,820 KB
testcase_17 AC 12 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

#ifndef LOCAL_
#define fprintf if( false ) fprintf
#endif // LOCAL_
#define dumpi(x1) fprintf(stderr, "#%s.%d (%s) = (%d)\n", __func__, __LINE__, #x1, x1);
#define dumpl(x1) fprintf(stderr, "#%s.%d (%s) = (%ld)\n", __func__, __LINE__, #x1, x1);
#define dumpd(x1) fprintf(stderr, "#%s.%d (%s) = (%lf)\n", __func__, __LINE__, #x1, x1);

char ss[51234];
long res;
int m;
std::map<uint64_t, int> counter;
uint64_t keys[16][256];

void setup() {
  int n = strlen(ss);
  for(int i = 0; i < n; ++i) {
    uint64_t key = 0ULL;
    for(int j = 0; j < 10; ++j) {
      key += keys[j][(int)ss[i+j]];
      counter[key] = 1 + counter[key];
    }
  }
}

void init() {
  std::random_device r1;
  std::mt19937_64 r2(r1());
  for(int i = 0; i < 16; ++i) {
    for(int j = 0; j < 256; ++j) {
      keys[i][j] = r2();
    }
  }
}

int main() {
  init();
  scanf("%s", ss);
  setup();
  scanf("%d", &m);
  long res = 0;
  for(int i = 0; i < m; ++i) {
    char xs[32];
    scanf("%s", xs);
    int n = strlen(xs);
    uint64_t key = 0ULL;
    for(int j = 0; j < n; ++j) {
      key += keys[j][(int)xs[j]];
    }
    dumpi(counter[key]);
    res += counter[key];
  }

  printf("%ld\n", res);

  return 0;
}
0