結果

問題 No.2328 Build Walls
ユーザー umezoumezo
提出日時 2023-05-28 14:52:03
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 893 bytes
コンパイル時間 2,822 ms
コンパイル使用メモリ 205,696 KB
実行使用メモリ 14,592 KB
最終ジャッジ日時 2024-12-27 03:16:42
合計ジャッジ時間 4,646 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
9,600 KB
testcase_01 AC 4 ms
9,728 KB
testcase_02 AC 4 ms
9,728 KB
testcase_03 AC 4 ms
9,856 KB
testcase_04 AC 3 ms
9,728 KB
testcase_05 AC 4 ms
9,712 KB
testcase_06 AC 4 ms
9,780 KB
testcase_07 AC 4 ms
9,656 KB
testcase_08 AC 4 ms
9,600 KB
testcase_09 AC 4 ms
9,728 KB
testcase_10 AC 4 ms
9,700 KB
testcase_11 AC 4 ms
9,720 KB
testcase_12 AC 4 ms
9,828 KB
testcase_13 AC 33 ms
12,284 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 8 ms
9,888 KB
testcase_20 WA -
testcase_21 AC 27 ms
11,952 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 50 ms
14,548 KB
testcase_29 WA -
testcase_30 AC 59 ms
14,592 KB
testcase_31 AC 57 ms
14,464 KB
testcase_32 WA -
testcase_33 AC 60 ms
14,592 KB
testcase_34 AC 60 ms
14,464 KB
testcase_35 AC 64 ms
14,592 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