結果
問題 | No.1909 Detect from Substrings |
ユーザー | SSRS |
提出日時 | 2022-04-22 21:19:18 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 30 ms / 2,000 ms |
コード長 | 1,226 bytes |
コンパイル時間 | 2,274 ms |
コンパイル使用メモリ | 210,076 KB |
最終ジャッジ日時 | 2025-01-28 19:49:09 |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 36 |
ソースコード
#include <bits/stdc++.h> using namespace std; int main(){ int N, M; cin >> N >> M; vector<string> S(N); for (int i = 0; i < N; i++){ cin >> S[i]; } int p = 0, q = M - 1; string A; while (p < M){ if (S[0][p] == S[1][p]){ A += S[0][p]; p++; } else { break; } } string B; while (q >= 0){ if (S[0][q] == S[1][q]){ B += S[0][q]; q--; } else { break; } } reverse(B.begin(), B.end()); vector<string> R; if (S[0].substr(p + 1, q - p) == S[1].substr(p, q - p)){ R.push_back(A + S[0][p] + S[0].substr(p + 1, q - p) + S[1][q] + B); } if (S[0].substr(p, q - p) == S[1].substr(p + 1, q - p)){ R.push_back(A + S[1][p] + S[0].substr(p, q - p) + S[0][q] + B); } sort(R.begin(), R.end()); R.erase(unique(R.begin(), R.end()), R.end()); int cnt = R.size(); int ans = 0; for (int i = 0; i < cnt; i++){ bool ok = true; for (int j = 0; j < N; j++){ int p2 = 0; for (int k = 0; k <= M; k++){ if (p2 < M){ if (R[i][k] == S[j][p2]){ p2++; } } } if (p2 != M){ ok = false; } } if (ok){ ans++; } } cout << ans << endl; }