結果

問題 No.971 いたずらっ子
ユーザー 👑 CleyLCleyL
提出日時 2020-01-17 21:38:15
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 657 bytes
コンパイル時間 600 ms
コンパイル使用メモリ 64,768 KB
実行使用メモリ 23,168 KB
最終ジャッジ日時 2024-06-25 19:00:57
合計ジャッジ時間 3,745 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 223 ms
23,040 KB
testcase_06 AC 175 ms
20,224 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 4 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 2 ms
5,376 KB
testcase_24 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
using namespace std;
int dp[2000][2000];
int main(){
    int h,w;cin>>h>>w;
    char mp[h][w];
    for(int i = 0; h > i; i++){
        for(int j = 0; w > j; j++){
            cin>>mp[i][j];
        }
    }
    dp[0][0] = 0;
    for(int i = 0; h > i; i++){
        for(int j = 0; w > j; j++){
            if(!(i+j))continue;
            if(!i){
                dp[i][j] = dp[i][j-1]+1;
            }else if(!j){
                dp[i][j] = dp[i-1][j]+1;
            }else{
                dp[i][j] = min(dp[i-1][j],dp[i][j-1])+1;
            }
            if(mp[i][j] == 'k')dp[i][j]*=2;
        }
    }
    cout << dp[h-1][w-1] << endl;
}
0