結果

問題 No.1909 Detect from Substrings
ユーザー 杨娵隅杨娵隅
提出日時 2022-04-23 01:15:47
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 61 ms / 2,000 ms
コード長 1,257 bytes
コンパイル時間 2,440 ms
コンパイル使用メモリ 210,512 KB
実行使用メモリ 20,096 KB
最終ジャッジ日時 2024-06-24 06:47:42
合計ジャッジ時間 5,396 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 4 ms
5,376 KB
testcase_05 AC 10 ms
11,648 KB
testcase_06 AC 18 ms
19,968 KB
testcase_07 AC 18 ms
20,096 KB
testcase_08 AC 59 ms
12,096 KB
testcase_09 AC 61 ms
12,104 KB
testcase_10 AC 35 ms
16,896 KB
testcase_11 AC 35 ms
16,896 KB
testcase_12 AC 27 ms
18,560 KB
testcase_13 AC 60 ms
12,100 KB
testcase_14 AC 58 ms
12,100 KB
testcase_15 AC 60 ms
12,180 KB
testcase_16 AC 27 ms
18,560 KB
testcase_17 AC 19 ms
19,840 KB
testcase_18 AC 18 ms
19,968 KB
testcase_19 AC 18 ms
19,840 KB
testcase_20 AC 17 ms
19,968 KB
testcase_21 AC 59 ms
11,996 KB
testcase_22 AC 59 ms
12,100 KB
testcase_23 AC 35 ms
16,896 KB
testcase_24 AC 36 ms
16,896 KB
testcase_25 AC 27 ms
18,560 KB
testcase_26 AC 57 ms
12,124 KB
testcase_27 AC 58 ms
12,100 KB
testcase_28 AC 58 ms
12,292 KB
testcase_29 AC 57 ms
11,972 KB
testcase_30 AC 60 ms
12,100 KB
testcase_31 AC 60 ms
12,228 KB
testcase_32 AC 61 ms
12,120 KB
testcase_33 AC 56 ms
12,100 KB
testcase_34 AC 59 ms
12,096 KB
testcase_35 AC 56 ms
12,100 KB
testcase_36 AC 60 ms
12,104 KB
testcase_37 AC 60 ms
12,104 KB
testcase_38 AC 60 ms
12,104 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define int long long
constexpr int inf = 1e18;
constexpr int maxn = 2e5 + 5;
constexpr int mod = 998244353;

inline vector<int> calc(string &s, string &t)
{
  int n = (int)s.size();
  vector<int> res(n + 1);
  int c = 0;
  for (int i = 0; i < n; i ++)
  {
    if (s[i] == t[c])
      c ++;
    res[i + 1] = c;
  }
  return res;
}

inline void solve()
{
  int n, m, ans = 0; cin >> n >> m;
  vector<string> s(n);
  for (auto &x : s) cin >> x;
  
  vector x(n - 1, vector<int>()), y(x);
  for (int i = 0; i < n - 1; i ++)
    x[i] = calc(s[0], s[i + 1]);
  for (auto &x : s) reverse(x.begin(), x.end());
  for (int i = 0; i < n - 1; i ++)
    y[i] = calc(s[0], s[i + 1]);
  for (auto &x : s) reverse(x.begin(), x.end());
  for (int i = 0; i <= m; i ++)
  {
    for (int j = 0; j < 26; j ++)
    {
      if (i != m && s[0][i] == 'a' + j) continue;
      int f = 1;
      for (int k = 0; k < n - 1; k ++)
        if (x[k][i] + y[k][m - i] < m - 1 || s[k + 1][x[k][i]] != 'a' + j) 
        {
          f = 0;
          break;
        }
      ans += f;
    }
  }
  cout << ans << "\n";
}

signed main()
{
  ios::sync_with_stdio(false);
  cin.tie(nullptr);
  solve();
  return 0;
}
/*
The details you should care:

*/
0