結果

問題 No.1909 Detect from Substrings
ユーザー icchiposticchipost
提出日時 2022-04-22 22:17:57
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 865 bytes
コンパイル時間 2,048 ms
コンパイル使用メモリ 177,596 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-24 03:34:12
合計ジャッジ時間 5,462 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 WA -
testcase_04 AC 4 ms
6,944 KB
testcase_05 AC 14 ms
6,944 KB
testcase_06 AC 26 ms
6,940 KB
testcase_07 AC 26 ms
6,940 KB
testcase_08 RE -
testcase_09 RE -
testcase_10 AC 26 ms
6,944 KB
testcase_11 AC 27 ms
6,944 KB
testcase_12 AC 25 ms
6,940 KB
testcase_13 AC 26 ms
6,944 KB
testcase_14 RE -
testcase_15 AC 25 ms
6,940 KB
testcase_16 AC 25 ms
6,940 KB
testcase_17 AC 25 ms
6,940 KB
testcase_18 AC 25 ms
6,940 KB
testcase_19 AC 28 ms
6,940 KB
testcase_20 AC 26 ms
6,940 KB
testcase_21 AC 27 ms
6,940 KB
testcase_22 AC 26 ms
6,940 KB
testcase_23 RE -
testcase_24 AC 26 ms
6,940 KB
testcase_25 AC 24 ms
6,944 KB
testcase_26 AC 28 ms
6,944 KB
testcase_27 AC 27 ms
6,944 KB
testcase_28 AC 26 ms
6,944 KB
testcase_29 AC 25 ms
6,940 KB
testcase_30 AC 25 ms
6,940 KB
testcase_31 AC 25 ms
6,944 KB
testcase_32 AC 26 ms
6,940 KB
testcase_33 AC 27 ms
6,940 KB
testcase_34 AC 25 ms
6,940 KB
testcase_35 AC 27 ms
6,940 KB
testcase_36 AC 25 ms
6,940 KB
testcase_37 AC 26 ms
6,944 KB
testcase_38 AC 26 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i, n) for (int i = 0; i < (n); i++)
using namespace std;
using pii = pair<int, int>;
using ll = long long;

int main() {
	int n, m;
	cin >> n >> m;
	vector<string> s(n);
	rep(i, n) cin >> s[i];
	sort(s.begin(), s.end());

	vector<string> ss(n);
	rep(j, m) {
		char c = s[0][j];
		bool ok = true;
		rep(i, n) if (s[i][j] != c) ok = false;
		if (!ok) {
			rep(i, n) {
				s[i] = s[i].substr(j);
			}
			m -= j;
			break;
		}
	}

	bool ok1 = true;
	bool ok2 = true;
	string t = s[0][0] + s[n - 1];
	string u = s[n - 1][0] + s[0];
	rep(i, n) {
		int ti = 0;
		rep(si, m) {
			if (s[i][si] == t[ti]) ti++;
			else ti += 2;
		}
		if (ti > m + 1) ok1 = false;

		int ui = 0;
		rep(si, m) {
			if (s[i][si] == u[ui]) ui++;
			else ui += 2;
		}
		if (ui > m + 1) ok2 = false;
	}

	int ans = ok1 + ok2;
	cout << ans << endl;
	return 0;
}
0