結果

問題 No.430 文字列検索
ユーザー BantakoBantako
提出日時 2018-07-15 18:58:22
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 1,063 bytes
コンパイル時間 1,613 ms
コンパイル使用メモリ 168,960 KB
実行使用メモリ 6,016 KB
最終ジャッジ日時 2024-04-24 14:43:10
合計ジャッジ時間 11,317 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 241 ms
6,016 KB
testcase_02 AC 15 ms
5,888 KB
testcase_03 AC 16 ms
5,888 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 12 ms
5,888 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 AC 1,306 ms
5,888 KB
testcase_15 AC 575 ms
5,888 KB
testcase_16 AC 61 ms
5,760 KB
testcase_17 AC 18 ms
5,888 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
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:34:24: 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;
      |                        ^~~
main.cpp:20:14: warning: 'c' may be used uninitialized [-Wmaybe-uninitialized]
   20 |         char c;
      |              ^

ソースコード

diff #

#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;
}
0