結果

問題 No.1909 Detect from Substrings
ユーザー 👑 rin204rin204
提出日時 2022-04-22 21:34:40
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 715 ms / 2,000 ms
コード長 896 bytes
コンパイル時間 160 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 118,896 KB
最終ジャッジ日時 2024-06-24 02:39:37
合計ジャッジ時間 14,117 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,752 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 31 ms
10,752 KB
testcase_03 AC 31 ms
11,008 KB
testcase_04 AC 36 ms
11,008 KB
testcase_05 AC 59 ms
11,520 KB
testcase_06 AC 66 ms
12,160 KB
testcase_07 AC 68 ms
12,032 KB
testcase_08 AC 207 ms
80,196 KB
testcase_09 AC 50 ms
19,400 KB
testcase_10 AC 185 ms
54,516 KB
testcase_11 AC 95 ms
37,116 KB
testcase_12 AC 147 ms
33,280 KB
testcase_13 AC 397 ms
118,852 KB
testcase_14 AC 395 ms
118,856 KB
testcase_15 AC 394 ms
118,852 KB
testcase_16 AC 179 ms
33,152 KB
testcase_17 AC 132 ms
13,952 KB
testcase_18 AC 126 ms
12,288 KB
testcase_19 AC 124 ms
12,032 KB
testcase_20 AC 123 ms
12,032 KB
testcase_21 AC 397 ms
118,728 KB
testcase_22 AC 395 ms
118,728 KB
testcase_23 AC 236 ms
54,520 KB
testcase_24 AC 234 ms
54,520 KB
testcase_25 AC 181 ms
33,152 KB
testcase_26 AC 404 ms
118,728 KB
testcase_27 AC 398 ms
118,724 KB
testcase_28 AC 407 ms
118,724 KB
testcase_29 AC 680 ms
118,736 KB
testcase_30 AC 619 ms
118,772 KB
testcase_31 AC 689 ms
118,788 KB
testcase_32 AC 620 ms
118,896 KB
testcase_33 AC 715 ms
118,724 KB
testcase_34 AC 619 ms
118,752 KB
testcase_35 AC 680 ms
118,824 KB
testcase_36 AC 616 ms
118,896 KB
testcase_37 AC 703 ms
118,816 KB
testcase_38 AC 622 ms
118,740 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(10 ** 9)

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