結果

問題 No.2328 Build Walls
ユーザー bluebery1001bluebery1001
提出日時 2023-05-28 15:57:38
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,463 bytes
コンパイル時間 1,727 ms
コンパイル使用メモリ 172,188 KB
実行使用メモリ 16,000 KB
最終ジャッジ日時 2024-06-08 09:01:09
合計ジャッジ時間 4,045 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 32 ms
12,800 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 6 ms
5,760 KB
testcase_20 WA -
testcase_21 AC 26 ms
13,440 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 45 ms
16,000 KB
testcase_29 WA -
testcase_30 AC 55 ms
16,000 KB
testcase_31 AC 53 ms
16,000 KB
testcase_32 WA -
testcase_33 AC 51 ms
16,000 KB
testcase_34 AC 55 ms
16,000 KB
testcase_35 AC 56 ms
16,000 KB
testcase_36 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

using namespace std;
#include<bits/stdc++.h>
void _main(); int main() { cin.tie(0); ios::sync_with_stdio(false); cout<<fixed<<setprecision(15);_main(); return 0;}
#pragma GCC target("avx2")
#pragma GCC optimize("O3")
#pragma GCC optimize("unroll-loops")
typedef long long ll;
typedef long double ld;
template<class ll> inline bool chmax(ll& a, ll b) { if (a < b) { a = b; return 1; } return 0; }
template<class ll> inline bool chmin(ll& a, ll b) { if (a > b) { a = b; return 1; } return 0; }
#define rep(i, star,fini) for (int i = star; i < fini; i++)
#define ALL(x) std::begin(x), std::end(x)
#define INF ((1LL<<62)-(1LL<<31))
#define bit(x,i)(((x)>>(i))&1)
long double distance(long double xi,long double yi,long double xj,long double yj){return sqrt(1.0*((xi-xj)*(xi-xj))+1.0*((yi-yj)*(yi-yj)));}
ll m[1000][1000],dp[1000][1000];
void _main(){
    ll h,w;cin >> h >> w;
    rep(i,0,h)rep(j,0,w)m[i][j]=-1,dp[i][j]=INF;
    rep(i,1,h-1)rep(j,0,w)cin >> m[i][j];
    
    rep(j,0,h)dp[j][0]=0;
    rep(i,1,h-1)if(m[i][0]!=-1)dp[i][0]=m[i][0];
    rep(i,1,w){
        rep(j,1,h-1){
            if(m[j][i]!=-1){
                if(m[j-1][i-1]!=-1)chmin(dp[j][i],dp[j-1][i-1]+m[j][i]);
                if(m[j][i-1]!=-1)chmin(dp[j][i],dp[j][i-1]+m[j][i]);
                if(m[j+1][i-1]!=-1)chmin(dp[j][i],dp[j+1][i-1]+m[j][i]);
            }
        }
    }
    ll ans = INF;
    rep(i,0,h){
        chmin(ans,dp[i][w-1]);
    }
    cout<<(ans!=INF?ans:-1)<<endl;
}
0