結果
| 問題 | No.874 正規表現間距離 | 
| コンテスト | |
| ユーザー |  | 
| 提出日時 | 2019-08-30 23:16:24 | 
| 言語 | D (dmd 2.109.1) | 
| 結果 | 
                                WA
                                 
                             | 
| 実行時間 | - | 
| コード長 | 2,822 bytes | 
| コンパイル時間 | 964 ms | 
| コンパイル使用メモリ | 110,536 KB | 
| 実行使用メモリ | 20,108 KB | 
| 最終ジャッジ日時 | 2024-06-22 02:26:26 | 
| 合計ジャッジ時間 | 2,522 ms | 
| ジャッジサーバーID (参考情報) | judge3 / judge4 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | AC * 4 | 
| other | AC * 25 WA * 13 | 
ソースコード
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[n][m].writeln;
}
            
            
            
        