結果

問題 No.874 正規表現間距離
ユーザー nebukuro09nebukuro09
提出日時 2019-08-31 00:05:23
言語 D
(dmd 2.105.2)
結果
WA  
実行時間 -
コード長 2,882 bytes
コンパイル時間 602 ms
コンパイル使用メモリ 95,156 KB
実行使用メモリ 20,440 KB
最終ジャッジ日時 2023-09-04 02:37:37
合計ジャッジ時間 2,508 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,380 KB
testcase_01 AC 1 ms
4,380 KB
testcase_02 AC 1 ms
4,376 KB
testcase_03 AC 2 ms
4,380 KB
testcase_04 AC 1 ms
4,376 KB
testcase_05 AC 1 ms
4,380 KB
testcase_06 AC 1 ms
4,376 KB
testcase_07 AC 2 ms
4,380 KB
testcase_08 WA -
testcase_09 AC 1 ms
4,376 KB
testcase_10 AC 2 ms
4,380 KB
testcase_11 AC 1 ms
4,380 KB
testcase_12 AC 1 ms
4,376 KB
testcase_13 AC 1 ms
4,376 KB
testcase_14 AC 1 ms
4,376 KB
testcase_15 WA -
testcase_16 AC 9 ms
4,800 KB
testcase_17 AC 9 ms
5,540 KB
testcase_18 AC 1 ms
4,504 KB
testcase_19 AC 1 ms
4,376 KB
testcase_20 AC 1 ms
4,376 KB
testcase_21 AC 1 ms
4,380 KB
testcase_22 AC 1 ms
4,376 KB
testcase_23 AC 1 ms
4,380 KB
testcase_24 AC 1 ms
4,380 KB
testcase_25 AC 30 ms
11,504 KB
testcase_26 AC 30 ms
11,484 KB
testcase_27 AC 58 ms
20,440 KB
testcase_28 AC 57 ms
16,548 KB
testcase_29 AC 60 ms
19,504 KB
testcase_30 AC 67 ms
18,652 KB
testcase_31 WA -
testcase_32 WA -
testcase_33 AC 2 ms
4,384 KB
testcase_34 AC 1 ms
4,380 KB
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 AC 1 ms
4,376 KB
testcase_39 AC 1 ms
4,376 KB
testcase_40 AC 2 ms
4,384 KB
testcase_41 AC 2 ms
4,380 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import std.stdio, std.array, std.string, std.conv, std.algorithm;
import std.typecons, std.range, std.random, std.math, std.container;
import std.numeric, std.bigint, core.bitop, core.stdc.stdio;

void main() {
    auto S = readln.chomp;
    auto T = readln.chomp;
    string s, t;
    int[] sx, tx;
    foreach (c; S) {
        if (c == '?') sx.back = 1;
        else if (c == '*') sx.back = 2;
        else s ~= c, sx ~= 0;
    }
    foreach (c; T) {
        if (c == '?') tx.back = 1;
        else if (c == '*') tx.back = 2;
        else t ~= c, tx ~= 0;
    }
    auto n = s.length.to!int;
    auto m = t.length.to!int;

    auto dp = new int[][](n + 1, m + 1);
    foreach (i; 0..n+1) dp[i][] = 1 << 29;
    dp[0][0] = 0;

    foreach (i; 0..n+1) {
        foreach (j; 0..m+1) {
            if (i == n && j == m) {
                continue;
            }
            if (i == n) {
                dp[i][j+1] = min(dp[i][j+1], dp[i][j] + (tx[j] == 0));
                continue;
            }
            if (j == m) {
                dp[i+1][j] = min(dp[i+1][j], dp[i][j] + (sx[i] == 0));
                continue;
            }

            if (sx[i] == 2 && tx[j] == 2) {
                dp[i+1][j+1] = min(dp[i+1][j+1], dp[i][j]);
                dp[i+1][j] = min(dp[i+1][j], dp[i][j]);
                dp[i][j+1] = min(dp[i][j+1], dp[i][j]);
            } else if (sx[i] == 2) {
                dp[i+1][j] = min(dp[i+1][j], dp[i][j]);
                if (s[i] == t[j]) {
                    dp[i+1][j+1] = min(dp[i+1][j+1], dp[i][j]);
                    dp[i][j+1] = min(dp[1][j+1], dp[i][j]);
                }
            } else if (tx[j] == 2) {
                dp[i][j+1] = min(dp[i][j+1], dp[i][j]);
                if (s[i] == t[j]) {
                    dp[i+1][j+1] = min(dp[i+1][j+1], dp[i][j]);
                    dp[i+1][j] = min(dp[i+1][j], dp[i][j]);
                }
            }

            if (sx[i] == 1 && tx[j] == 1) {
                dp[i+1][j+1] = min(dp[i+1][j+1], dp[i][j]);
                dp[i+1][j] = min(dp[i+1][j], dp[i][j]);
                dp[i][j+1] = min(dp[i][j+1], dp[i][j]);
            } else if (sx[i] == 1) {
                dp[i+1][j] = min(dp[i+1][j], dp[i][j]);
                if (s[i] == t[j]) {
                    dp[i+1][j+1] = min(dp[i+1][j+1], dp[i][j]);
                }
            } else if (tx[j] == 1) {
                dp[i][j+1] = min(dp[i][j+1], dp[i][j]);
                if (s[i] == t[j]) {
                    dp[i+1][j+1] = min(dp[i+1][j+1], dp[i][j]);
                }
            }

            if (s[i] == t[j]) {
                dp[i+1][j+1] = min(dp[i+1][j+1], dp[i][j]);
            }

            dp[i+1][j] = min(dp[i+1][j], dp[i][j] + 1);
            dp[i][j+1] = min(dp[i][j+1], dp[i][j] + 1);
            dp[i+1][j+1] = min(dp[i+1][j+1], dp[i][j] + 1);
        }
    }


    dp[n][m].writeln;
}
0