結果

問題 No.1909 Detect from Substrings
ユーザー icchiposticchipost
提出日時 2022-04-23 08:29:33
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 754 bytes
コンパイル時間 1,825 ms
コンパイル使用メモリ 169,956 KB
実行使用メモリ 5,660 KB
最終ジャッジ日時 2024-06-24 17:59:26
合計ジャッジ時間 4,897 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 13 ms
5,376 KB
testcase_06 AC 25 ms
5,376 KB
testcase_07 AC 24 ms
5,376 KB
testcase_08 AC 25 ms
5,376 KB
testcase_09 AC 26 ms
5,660 KB
testcase_10 AC 24 ms
5,376 KB
testcase_11 AC 24 ms
5,376 KB
testcase_12 AC 23 ms
5,376 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
権限があれば一括ダウンロードができます

ソースコード

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];

	string t, u;
	rep(i, m) {
		if (s[0][i] != s[1][i]) {
			t = s[0][i] + s[1].substr(i);
			u = s[1][i] + s[0].substr(i);
			break;
		}
	}

	int ok1 = 1, ok2 = 1;
	rep(i, n) {
		int ti = 0, ui = 0;
		rep(j, m) {
			if (s[i][j] == t[ti]) ti++;
			else {
				ti += 2;
				if (ti > m + 1) break;
			}
		}
		if (ti > m + 1) ok1 = 0;

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

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