結果

問題 No.225 文字列変更(medium)
ユーザー mbanmban
提出日時 2017-04-25 22:33:25
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 129 ms / 5,000 ms
コード長 1,175 bytes
コンパイル時間 2,092 ms
コンパイル使用メモリ 110,716 KB
実行使用メモリ 35,196 KB
最終ジャッジ日時 2024-09-13 09:18:59
合計ジャッジ時間 3,927 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 67 ms
27,112 KB
testcase_01 AC 94 ms
30,196 KB
testcase_02 AC 25 ms
26,712 KB
testcase_03 AC 25 ms
24,356 KB
testcase_04 AC 24 ms
24,156 KB
testcase_05 AC 25 ms
24,556 KB
testcase_06 AC 25 ms
24,364 KB
testcase_07 AC 24 ms
24,748 KB
testcase_08 AC 25 ms
26,580 KB
testcase_09 AC 26 ms
24,372 KB
testcase_10 AC 27 ms
24,540 KB
testcase_11 AC 27 ms
24,356 KB
testcase_12 AC 123 ms
31,284 KB
testcase_13 AC 129 ms
31,320 KB
testcase_14 AC 129 ms
31,468 KB
testcase_15 AC 121 ms
33,236 KB
testcase_16 AC 123 ms
35,196 KB
testcase_17 AC 121 ms
33,364 KB
testcase_18 AC 118 ms
33,124 KB
testcase_19 AC 124 ms
33,252 KB
testcase_20 AC 121 ms
33,068 KB
testcase_21 AC 123 ms
33,252 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;
using System.Collections;
using System.Collections.Generic;
using System.Collections.Specialized;
using System.Text;
using System.Text.RegularExpressions;
using System.Linq;
using System.IO;

class Program
{
    static void Main(string[] args)
    {
        new Magatro().Solve();
    }
}

class Magatro
{
    public void Solve()
    {
        Console.ReadLine();
        string s = Console.ReadLine();
        string t = Console.ReadLine();
        Console.WriteLine(LenenshteinDistance(s, t));
    }


    private int LenenshteinDistance(string a, string b)
    {
        int[,] dp = new int[a.Length + 1, b.Length + 1];

        for (int i = 0; i <= a.Length; i++)
        {
            dp[i, 0] = i;
        }

        for (int i = 0; i <= b.Length; i++)
        {
            dp[0, i] = i;
        }

        for (int i = 1; i <= a.Length; i++)
        {
            for (int j = 1; j <= b.Length; j++)
            {
                int cost = a[i - 1] == b[j - 1] ? 0 : 1;

                dp[i, j] = (new int[] { dp[i - 1, j] + 1, dp[i, j - 1]+1, dp[i - 1, j - 1] + cost }).Min();
            }
        }

        return dp[a.Length, b.Length];
    }
}

0