結果

問題 No.225 文字列変更(medium)
ユーザー FF256grhyFF256grhy
提出日時 2015-06-13 01:33:33
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 6 ms / 5,000 ms
コード長 822 bytes
コンパイル時間 413 ms
コンパイル使用メモリ 23,040 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-06 17:28:45
合計ジャッジ時間 847 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 4 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 0 ms
5,376 KB
testcase_06 AC 0 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 1 ms
5,376 KB
testcase_09 AC 1 ms
5,376 KB
testcase_10 AC 1 ms
5,376 KB
testcase_11 AC 1 ms
5,376 KB
testcase_12 AC 6 ms
5,376 KB
testcase_13 AC 6 ms
5,376 KB
testcase_14 AC 6 ms
5,376 KB
testcase_15 AC 5 ms
5,376 KB
testcase_16 AC 5 ms
5,376 KB
testcase_17 AC 5 ms
5,376 KB
testcase_18 AC 4 ms
5,376 KB
testcase_19 AC 6 ms
5,376 KB
testcase_20 AC 5 ms
5,376 KB
testcase_21 AC 6 ms
5,376 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:10:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   10 |         scanf("%d %d%s%s", &n, &m, a, b);
      |         ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~

ソースコード

diff #

#include <stdio.h>

int min(int, int, int);

int n, m;
char a[1001], b[1001];
int memo[1001][1001];

int main(void) {
	scanf("%d %d%s%s", &n, &m, a, b);
	
	int i, j;
	i = 0; while(a[i] != '\0') { i++; } int la = i;
	i = 0; while(b[i] != '\0') { i++; } int lb = i;

	for(i = 1; i <= la; i++) { memo[i][0] = i; } // 番兵をセット
	for(j = 1; j <= lb; j++) { memo[0][j] = j; }
	
	for(i = 1; i <= la; i++) { // 1ずれてるので、memo[i][j] は (a[i-1], b[j-1]) 相当
	for(j = 1; j <= lb; j++) {
		int v0 = memo[i - 1][j - 1] - (a[i - 1] == b[j - 1]); // change
		int v1 = memo[i - 1][j    ]; // delete
		int v2 = memo[i    ][j - 1]; // insert
		memo[i][j] = min(v0, v1, v2) + 1;
	}
	}
	
	printf("%d\n", memo[la][lb]);
	return 0;
}

int min(int x, int y, int z) {
	int w = (x < y) ? x : y;
	return (w < z) ? w : z;
}
0