結果

問題 No.2328 Build Walls
ユーザー umezoumezo
提出日時 2023-05-28 14:52:03
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 893 bytes
コンパイル時間 2,103 ms
コンパイル使用メモリ 206,516 KB
実行使用メモリ 14,720 KB
最終ジャッジ日時 2024-06-08 06:21:00
合計ジャッジ時間 4,363 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
9,772 KB
testcase_01 AC 4 ms
9,636 KB
testcase_02 AC 4 ms
9,784 KB
testcase_03 AC 3 ms
9,756 KB
testcase_04 AC 4 ms
9,728 KB
testcase_05 AC 4 ms
9,696 KB
testcase_06 AC 4 ms
9,724 KB
testcase_07 AC 4 ms
9,656 KB
testcase_08 AC 4 ms
9,632 KB
testcase_09 AC 3 ms
9,728 KB
testcase_10 AC 4 ms
9,780 KB
testcase_11 AC 4 ms
9,756 KB
testcase_12 AC 3 ms
9,744 KB
testcase_13 AC 29 ms
12,160 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 8 ms
9,908 KB
testcase_20 WA -
testcase_21 AC 25 ms
11,996 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 46 ms
14,720 KB
testcase_29 WA -
testcase_30 AC 56 ms
14,592 KB
testcase_31 AC 51 ms
14,592 KB
testcase_32 WA -
testcase_33 AC 54 ms
14,592 KB
testcase_34 AC 55 ms
14,592 KB
testcase_35 AC 59 ms
14,720 KB
testcase_36 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#define rep(i,n) for(int i=0;i<(int)(n);i++)
#define ALL(v) v.begin(),v.end()
typedef long long ll;
 
#include<bits/stdc++.h>
using namespace std;

ll dp[900][900];
const ll INF=2e18;
 
int main(){
  ios::sync_with_stdio(false);
  std::cin.tie(nullptr);
  
  int h,w;
  cin>>h>>w;
  vector<vector<ll>> A(h-2,vector<ll>(w));
  rep(i,h-2) rep(j,w) cin>>A[i][j];
  
  rep(i,900) rep(j,900) dp[i][j]=INF;
  rep(i,h-2) if(A[i][0]!=-1) dp[i][0]=A[i][0];
  for(int j=1;j<w;j++){
    for(int i=0;i<h-2;i++){
      if(A[i][j]==-1) continue;
      if(i && dp[i-1][j-1]!=INF) dp[i][j]=min(dp[i][j],dp[i-1][j-1]+A[i][j]);
      if(dp[i][j-1]!=INF) dp[i][j]=min(dp[i][j],dp[i][j-1]+A[i][j]);
      if(i<h-3 && dp[i+1][j-1]!=INF) dp[i][j]=min(dp[i][j],dp[i+1][j-1]+A[i][j]);    
    }
  }
  ll mi=INF;
  rep(i,h-2) mi=min(mi,dp[i][w-1]);
  if(mi==INF) cout<<-1<<endl;
  else cout<<mi<<endl;
  
  return 0;
}
0