結果
問題 | No.1909 Detect from Substrings |
ユーザー | otoshigo |
提出日時 | 2022-04-22 22:24:41 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 2,601 bytes |
コンパイル時間 | 2,593 ms |
コンパイル使用メモリ | 213,640 KB |
実行使用メモリ | 13,884 KB |
最終ジャッジ日時 | 2024-06-24 03:41:50 |
合計ジャッジ時間 | 6,618 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
13,884 KB |
testcase_01 | AC | 2 ms
6,944 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | AC | 3 ms
6,940 KB |
testcase_04 | AC | 3 ms
6,940 KB |
testcase_05 | AC | 3 ms
6,944 KB |
testcase_06 | AC | 4 ms
6,940 KB |
testcase_07 | AC | 4 ms
6,940 KB |
testcase_08 | TLE | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
ソースコード
#include <bits/stdc++.h> #include <atcoder/modint> using namespace std; using namespace atcoder; using ll = long long; using mint = modint998244353; #define rep(i,n) for (int i = 0; i < n; i++) #define rrep(i,n) for (int i = n-1; i >= 0; i--) #define rep2(i,a,b) for (int i = a; i < b; i++) #define rrep2(i,a,b) for (int i = a-1; i >= b; i--) #define rep3(i,a,b,c) for (int i = a; i < b; i+=c) #define rrep3(i,a,b,c) for (int i = a-1; i >= b; i-=c) #define all(v) v.begin(),v.end() #define rall(v) v.rbegin(),v.rend() template<class T> bool chmax(T &a, T b){if (a < b){a = b;return true;} else return false;} template<class T> bool chmin(T &a, T b){if (a > b){a = b;return true;} else return false;} template<class T> T power(T x, ll y){if (y == 0) return 1;T p = pow(x,y/2);if (y%2 == 0) return p*p;else return p*p*x;} int main(){ ios::sync_with_stdio(false); cin.tie(nullptr); int n,m; cin >> n >> m; vector<string> S(n); set<string> V; rep(i,n) cin >> S[i]; rep(i,m){ if (S[0][i] != S[1][i]){ rep(j,2){ string t = S[0].substr(0,i); t += S[j][i]; bool f = true; rep2(k,i,m-1){ if (S[j][k+1] != S[1-j][k]) f = false; t += S[1-j][k]; } if (f){ t += S[1-j][m-1]; V.insert(t); } } break; } } rep(i,m){ vector<string> s(2); rep(j,2){ s[j] = S[j]; reverse(all(s[j])); } if (s[0][i] != s[1][i]){ rep(j,2){ string t = s[0].substr(0,i); t += s[j][i]; bool f = true; rep2(k,i,m-1){ if (s[j][k+1] != s[1-j][k]) f = false; t += s[1-j][k]; } if (f){ t += s[1-j][m-1]; reverse(all(t)); V.insert(t); } } break; } } int ans = 0; for (auto s:V){ bool f = true; rep(i,n){ int id = m; rep(j,m){ if (S[i][j] != s[j]){ id = j; break; } } rep2(j,id+1,m+1){ if (S[i][j] != s[j+1]){ f = false; break; } } if (!f) break; } if (f) ans++; } cout << ans << endl; }