結果
| 問題 | No.430 文字列検索 | 
| コンテスト | |
| ユーザー |  Bantako | 
| 提出日時 | 2018-07-15 18:58:22 | 
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) | 
| 結果 | 
                                AC
                                 
                             | 
| 実行時間 | 1,960 ms / 2,000 ms | 
| コード長 | 1,063 bytes | 
| コンパイル時間 | 1,651 ms | 
| コンパイル使用メモリ | 174,104 KB | 
| 実行使用メモリ | 5,888 KB | 
| 最終ジャッジ日時 | 2024-11-10 00:19:35 | 
| 合計ジャッジ時間 | 10,888 ms | 
| ジャッジサーバーID (参考情報) | judge2 / judge5 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | AC * 4 | 
| other | AC * 14 | 
コンパイルメッセージ
main.cpp:7:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
    7 | main(){
      | ^~~~
main.cpp: In function 'int main()':
main.cpp:20:14: warning: 'c' may be used uninitialized [-Wmaybe-uninitialized]
   20 |         char c;
      |              ^
main.cpp:34:29: warning: 'ind' may be used uninitialized [-Wmaybe-uninitialized]
   34 |             if(j < ind || j - ind + ss.size() > S.size())continue;
      |                           ~~^~~~~
main.cpp:19:24: note: 'ind' was declared here
   19 |         int mini = INF,ind;
      |                        ^~~
            
            ソースコード
#include<bits/stdc++.h>
#define rep(i,a,b) for(int i=int(a);i<int(b);++i)
using namespace std;
typedef long long ll;
int INF = (1LL << 30) - 1;
int MOD = 1e9+7;
main(){
    string S;
    cin >> S;
    set<int> cnt[26] = {};
    rep(i,0,S.size()){
        cnt[S[i] - 'A'].insert(i);
    }
    int N,ans = 0;
    cin >> N;
    rep(i,0,N){
        string ss;
        cin >> ss;
        int mini = INF,ind;
        char c;
        rep(j,0,ss.size()){
            int num = cnt[ss[j] - 'A'].size();
            if(mini > num){
                mini = num;
                ind = j;
                c = ss[j] - 'A';
            }
        }
        //しらべる文字 c
        //調べる文字に対してのssのインデックス ind
        //                  Sのインデックス j
        for(int j:cnt[c]){
            //cout << j << " " << ind << " " << ss.size() << " " << S.size() << endl;
            if(j < ind || j - ind + ss.size() > S.size())continue;
            if(S.substr(j - ind, ss.size()) == ss)ans++;
        }
    }
    cout << ans << endl;
}
            
            
            
        