結果

問題 No.1909 Detect from Substrings
ユーザー 沙耶花沙耶花
提出日時 2022-04-22 21:44:13
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 94 ms / 2,000 ms
コード長 1,014 bytes
コンパイル時間 4,632 ms
コンパイル使用メモリ 268,024 KB
実行使用メモリ 13,440 KB
最終ジャッジ日時 2024-06-24 02:50:54
合計ジャッジ時間 8,636 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 5 ms
6,944 KB
testcase_05 AC 17 ms
8,448 KB
testcase_06 AC 32 ms
13,312 KB
testcase_07 AC 33 ms
13,440 KB
testcase_08 AC 92 ms
9,160 KB
testcase_09 AC 92 ms
9,028 KB
testcase_10 AC 57 ms
11,020 KB
testcase_11 AC 56 ms
11,028 KB
testcase_12 AC 42 ms
11,648 KB
testcase_13 AC 92 ms
9,160 KB
testcase_14 AC 92 ms
9,156 KB
testcase_15 AC 92 ms
9,244 KB
testcase_16 AC 43 ms
11,648 KB
testcase_17 AC 33 ms
12,544 KB
testcase_18 AC 33 ms
13,184 KB
testcase_19 AC 33 ms
13,312 KB
testcase_20 AC 33 ms
13,312 KB
testcase_21 AC 93 ms
9,032 KB
testcase_22 AC 94 ms
9,160 KB
testcase_23 AC 57 ms
11,020 KB
testcase_24 AC 55 ms
11,020 KB
testcase_25 AC 43 ms
11,648 KB
testcase_26 AC 93 ms
9,160 KB
testcase_27 AC 92 ms
9,160 KB
testcase_28 AC 91 ms
9,036 KB
testcase_29 AC 90 ms
9,032 KB
testcase_30 AC 93 ms
9,156 KB
testcase_31 AC 90 ms
9,160 KB
testcase_32 AC 93 ms
9,160 KB
testcase_33 AC 85 ms
9,156 KB
testcase_34 AC 91 ms
9,164 KB
testcase_35 AC 88 ms
9,036 KB
testcase_36 AC 93 ms
9,160 KB
testcase_37 AC 90 ms
9,156 KB
testcase_38 AC 92 ms
9,164 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <bits/stdc++.h>
#include <atcoder/all>
using namespace atcoder;
using mint = modint998244353;
using namespace std;
#define rep(i,n) for (int i = 0; i < (n); ++i)
#define Inf 1000000001



vector<int> get(string s,string t){
	vector<int> ret(s.size()+1,0);
	int c = 0;
	rep(i,s.size()){
		if(s[i] == t[c]){
			c++;
		}
		ret[i+1] = c;
	}
	return ret;
}

int main(){
	
	vector<string> s;
	int ans = 0;
	int n,m;
	cin>>n>>m;
	s.resize(n);
	rep(i,n)cin>>s[i];
	
	vector<vector<int>> x(n-1);
	rep(i,n-1){
		x[i] = get(s[0],s[i+1]);
	}
	rep(i,n)reverse(s[i].begin(),s[i].end());
	vector<vector<int>> y(n-1);
	rep(i,n-1){
		y[i] = get(s[0],s[i+1]);
	}
	rep(i,n)reverse(s[i].begin(),s[i].end());
	rep(i,m+1){
		rep(j,26){
			if(i!=m && s[0][i]=='a'+j)continue;
			bool f = true;
			rep(k,n-1){
				if(x[k][i] + y[k][m-i] < m-1){
					f = false;
					break;
				}
				if(s[k+1][x[k][i]]!='a'+j){
					f = false;
					break;
				}
			}
			if(f)ans++;
			
		}
	}
	
	cout<<ans<<endl;
	
	return 0;
}
0