結果

問題 No.225 文字列変更(medium)
ユーザー kuroi_13kuroi_13
提出日時 2017-02-27 09:23:07
言語 Perl
(5.38.2)
結果
AC  
実行時間 679 ms / 5,000 ms
コード長 498 bytes
コンパイル時間 151 ms
コンパイル使用メモリ 6,816 KB
実行使用メモリ 40,448 KB
最終ジャッジ日時 2024-06-11 19:18:56
合計ジャッジ時間 8,260 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 263 ms
19,200 KB
testcase_01 AC 451 ms
26,368 KB
testcase_02 AC 5 ms
6,940 KB
testcase_03 AC 5 ms
6,944 KB
testcase_04 AC 5 ms
6,940 KB
testcase_05 AC 5 ms
6,940 KB
testcase_06 AC 6 ms
6,940 KB
testcase_07 AC 5 ms
6,944 KB
testcase_08 AC 5 ms
6,940 KB
testcase_09 AC 6 ms
6,944 KB
testcase_10 AC 5 ms
6,944 KB
testcase_11 AC 5 ms
6,940 KB
testcase_12 AC 633 ms
37,888 KB
testcase_13 AC 679 ms
40,448 KB
testcase_14 AC 660 ms
39,680 KB
testcase_15 AC 635 ms
38,144 KB
testcase_16 AC 636 ms
39,168 KB
testcase_17 AC 636 ms
38,144 KB
testcase_18 AC 617 ms
37,376 KB
testcase_19 AC 635 ms
38,656 KB
testcase_20 AC 598 ms
36,992 KB
testcase_21 AC 630 ms
38,528 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.pl syntax OK

ソースコード

diff #

use strict;
use warnings;

my($len1, $len2) = split ' ', <STDIN>;
my @ar1 = split('', <STDIN>);
my @ar2 = split('', <STDIN>);
my @dist;
for(0..$len1){
  $dist[$_][0] = $_;
}
for(0..$len2){
  $dist[0][$_] = $_;
}

my $rep;
my $ref;
my @costs;
for my $i (1..$len1){
  for my $j (1..$len2){
    $rep = $ar1[$i-1] eq $ar2[$j-1] ? 0 : 1;
    @costs = ($dist[$i-1][$j] + 1, $dist[$i][$j-1] + 1, $dist[$i-1][$j-1] + $rep);
    $dist[$i][$j] = (sort {$a <=> $b} @costs)[0];
  }
}
print $dist[$len1][$len2];
0