結果

問題 No.971 いたずらっ子
ユーザー yakkiyakki
提出日時 2020-01-18 09:00:47
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 148 ms / 2,000 ms
コード長 1,185 bytes
コンパイル時間 1,285 ms
コンパイル使用メモリ 120,484 KB
実行使用メモリ 43,008 KB
最終ジャッジ日時 2024-11-07 11:36:46
合計ジャッジ時間 4,029 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 148 ms
42,880 KB
testcase_01 AC 146 ms
43,008 KB
testcase_02 AC 115 ms
39,168 KB
testcase_03 AC 126 ms
43,008 KB
testcase_04 AC 119 ms
42,496 KB
testcase_05 AC 122 ms
42,880 KB
testcase_06 AC 98 ms
38,784 KB
testcase_07 AC 26 ms
35,456 KB
testcase_08 AC 51 ms
37,376 KB
testcase_09 AC 50 ms
37,248 KB
testcase_10 AC 26 ms
35,328 KB
testcase_11 AC 24 ms
35,328 KB
testcase_12 AC 24 ms
35,200 KB
testcase_13 AC 24 ms
35,328 KB
testcase_14 AC 25 ms
35,456 KB
testcase_15 AC 25 ms
35,328 KB
testcase_16 AC 25 ms
35,328 KB
testcase_17 AC 25 ms
35,328 KB
testcase_18 AC 24 ms
35,328 KB
testcase_19 AC 24 ms
35,328 KB
testcase_20 AC 25 ms
35,328 KB
testcase_21 AC 24 ms
35,328 KB
testcase_22 AC 25 ms
35,328 KB
testcase_23 AC 24 ms
35,328 KB
testcase_24 AC 24 ms
35,200 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<string>
#include<vector>
#include<algorithm>
#include<bitset>
#include<set>
#include<map>
#include<stack>
#include<queue>
#include<deque>
#include<list>
#include<iomanip>
#include<cmath>
#include<cstring>
#include<functional>
using namespace std;

#define repr(i, a, b) for (int i = (int)(a); i < (int)(b); i++)
#define rep(i, n) repr(i, 0, n)
#define INF 2e9
#define MOD 1000000007
//#define MOD 998244353
#define LINF (long long)4e18
#define jck 3.141592

using ll = long long;
using Pi = pair<int,int>;
using Pl = pair<ll,ll>;

ll dp[2020][2020];

int main(){
    int H,W; cin >> H >> W;
    vector<string> a(H);
    rep(i,H) cin >> a[i];
    rep(i,2020)rep(j,2020) dp[i][j] = LINF;
    dp[0][0] = 0;
    rep(i,H)rep(j,W){
        if(i+1 < H){
            if(a[i+1][j] == '.') dp[i+1][j] = min(dp[i+1][j],dp[i][j]+1);
            else dp[i+1][j] = min(dp[i+1][j],dp[i][j]+i+j+2);
        }
        if(j+1 < W){
            if(a[i][j+1] == '.') dp[i][j+1] = min(dp[i][j+1],dp[i][j]+1);
            else dp[i][j+1] = min(dp[i][j+1],dp[i][j]+i+j+2);
        }
    }
    //rep(i,H)rep(j,W) cout << dp[i][j] << endl;
    cout << dp[H-1][W-1] << endl;
}
    

0