結果

問題 No.971 いたずらっ子
ユーザー leaf_1415leaf_1415
提出日時 2020-01-18 02:37:01
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 214 ms / 2,000 ms
コード長 691 bytes
コンパイル時間 520 ms
コンパイル使用メモリ 55,388 KB
実行使用メモリ 38,656 KB
最終ジャッジ日時 2024-11-07 11:36:29
合計ジャッジ時間 3,390 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 214 ms
38,656 KB
testcase_01 AC 214 ms
38,656 KB
testcase_02 AC 145 ms
29,824 KB
testcase_03 AC 203 ms
38,656 KB
testcase_04 AC 192 ms
38,400 KB
testcase_05 AC 201 ms
38,656 KB
testcase_06 AC 153 ms
34,304 KB
testcase_07 AC 4 ms
5,376 KB
testcase_08 AC 41 ms
17,664 KB
testcase_09 AC 38 ms
17,024 KB
testcase_10 AC 11 ms
15,488 KB
testcase_11 AC 2 ms
5,248 KB
testcase_12 AC 2 ms
5,248 KB
testcase_13 AC 10 ms
15,104 KB
testcase_14 AC 2 ms
5,248 KB
testcase_15 AC 10 ms
15,232 KB
testcase_16 AC 2 ms
5,248 KB
testcase_17 AC 2 ms
5,248 KB
testcase_18 AC 1 ms
5,248 KB
testcase_19 AC 2 ms
5,248 KB
testcase_20 AC 2 ms
5,248 KB
testcase_21 AC 2 ms
5,248 KB
testcase_22 AC 2 ms
5,248 KB
testcase_23 AC 2 ms
5,248 KB
testcase_24 AC 2 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#define llint long long
#define inf 1e18

using namespace std;

llint h, w;
char c[2005][2005];
llint dp[2005][2005];

int main(void)
{
	ios::sync_with_stdio(0);
	cin.tie(0);
	
	cin >> h >> w;
	for(int y = 1; y <= h; y++){
		for(int x = 1; x <= w; x++){
			cin >> c[x][y];
		}
	}
	for(int y = 1; y <= h; y++){
		for(int x = 1; x <= w; x++){
			dp[x][y] = inf;
		}
	}
	dp[1][1] = 0;
	for(int y = 1; y <= h; y++){
		for(int x = 1; x <= w; x++){
			llint cost = 1;
			if(c[x][y] == 'k') cost += (x-1)+(y-1);
			if(x >= 2) dp[x][y] = min(dp[x][y], dp[x-1][y] + cost);
			if(y >= 2) dp[x][y] = min(dp[x][y], dp[x][y-1] + cost);
		}
	}
	cout << dp[w][h] << endl;
	
	return 0;
}
0