結果

問題 No.1909 Detect from Substrings
ユーザー 👑 rin204rin204
提出日時 2022-04-22 21:35:26
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 896 bytes
コンパイル時間 204 ms
コンパイル使用メモリ 82,604 KB
実行使用メモリ 702,964 KB
最終ジャッジ日時 2024-06-24 02:41:07
合計ジャッジ時間 32,790 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,548 KB
testcase_01 AC 39 ms
53,280 KB
testcase_02 AC 38 ms
53,292 KB
testcase_03 AC 47 ms
59,900 KB
testcase_04 AC 44 ms
61,748 KB
testcase_05 AC 53 ms
66,128 KB
testcase_06 AC 62 ms
70,048 KB
testcase_07 AC 63 ms
71,076 KB
testcase_08 AC 722 ms
379,832 KB
testcase_09 AC 124 ms
108,776 KB
testcase_10 AC 480 ms
268,048 KB
testcase_11 AC 286 ms
182,652 KB
testcase_12 AC 266 ms
169,760 KB
testcase_13 MLE -
testcase_14 MLE -
testcase_15 MLE -
testcase_16 AC 264 ms
169,064 KB
testcase_17 AC 76 ms
80,052 KB
testcase_18 AC 67 ms
71,312 KB
testcase_19 AC 68 ms
71,088 KB
testcase_20 AC 67 ms
71,244 KB
testcase_21 MLE -
testcase_22 MLE -
testcase_23 AC 483 ms
267,412 KB
testcase_24 AC 479 ms
267,856 KB
testcase_25 AC 264 ms
170,840 KB
testcase_26 MLE -
testcase_27 MLE -
testcase_28 MLE -
testcase_29 MLE -
testcase_30 MLE -
testcase_31 MLE -
testcase_32 MLE -
testcase_33 MLE -
testcase_34 MLE -
testcase_35 MLE -
testcase_36 MLE -
testcase_37 MLE -
testcase_38 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(1000100)

n, m = map(int, input().split())
lst = [input() for _ in range(n)]
S = lst[0]
T = lst[1]
tmp = []
ans = 0

def ok():
    for S in lst:
        p = 0
        for t in tmp:
            if S[p] == t:
                p += 1
                if p == m:
                    break
        if p != m:
            return False
    return True
    

def dfs(sp, tp, x):
    if sp == m and tp == m:
        global ans
        if ok():
            ans += 1
        return
    if sp < m and tp < m and S[sp] == T[tp]:
        tmp.append(S[sp])
        dfs(sp + 1, tp + 1, x)
        tmp.pop()
    else:
        if sp < m and not x & 1:
            tmp.append(S[sp])
            dfs(sp + 1, tp, x ^ 1)
            tmp.pop()
        if tp < m and not x & 2:
            tmp.append(T[tp])
            dfs(sp, tp + 1, x ^ 2)
            tmp.pop()

dfs(0, 0, 0)
print(ans)
0