結果

問題 No.430 文字列検索
ユーザー BantakoBantako
提出日時 2018-07-15 18:58:22
言語 C++14
(gcc 12.3.0 + boost 1.83.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
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 246 ms
5,888 KB
testcase_02 AC 14 ms
5,888 KB
testcase_03 AC 15 ms
5,888 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 14 ms
5,888 KB
testcase_09 AC 2 ms
5,248 KB
testcase_10 AC 2 ms
5,248 KB
testcase_11 AC 1,960 ms
5,888 KB
testcase_12 AC 1,920 ms
5,888 KB
testcase_13 AC 1,936 ms
5,888 KB
testcase_14 AC 1,395 ms
5,888 KB
testcase_15 AC 620 ms
5,888 KB
testcase_16 AC 62 ms
5,888 KB
testcase_17 AC 17 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: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;
      |                        ^~~

ソースコード

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