結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 30 ms
10,752 KB
testcase_03 AC 31 ms
11,008 KB
testcase_04 AC 35 ms
11,008 KB
testcase_05 AC 59 ms
11,520 KB
testcase_06 AC 65 ms
12,160 KB
testcase_07 AC 67 ms
12,160 KB
testcase_08 AC 199 ms
80,068 KB
testcase_09 AC 49 ms
19,400 KB
testcase_10 AC 187 ms
54,516 KB
testcase_11 AC 94 ms
37,240 KB
testcase_12 AC 150 ms
33,280 KB
testcase_13 AC 382 ms
118,724 KB
testcase_14 AC 386 ms
118,728 KB
testcase_15 AC 386 ms
118,724 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 122 ms
12,032 KB
testcase_20 AC 121 ms
12,032 KB
testcase_21 AC 387 ms
118,852 KB
testcase_22 AC 387 ms
118,856 KB
testcase_23 AC 231 ms
54,520 KB
testcase_24 AC 233 ms
54,648 KB
testcase_25 AC 180 ms
33,152 KB
testcase_26 AC 387 ms
118,724 KB
testcase_27 AC 391 ms
118,820 KB
testcase_28 AC 387 ms
118,732 KB
testcase_29 AC 667 ms
118,864 KB
testcase_30 AC 614 ms
118,644 KB
testcase_31 AC 678 ms
118,764 KB
testcase_32 AC 609 ms
118,752 KB
testcase_33 AC 704 ms
118,640 KB
testcase_34 AC 608 ms
118,748 KB
testcase_35 AC 671 ms
118,836 KB
testcase_36 AC 612 ms
118,756 KB
testcase_37 AC 673 ms
118,820 KB
testcase_38 AC 612 ms
118,748 KB
権限があれば一括ダウンロードができます

ソースコード

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