結果

問題 No.2328 Build Walls
ユーザー cho435cho435
提出日時 2023-05-28 17:01:03
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 1,049 ms / 3,000 ms
コード長 1,017 bytes
コンパイル時間 2,642 ms
コンパイル使用メモリ 217,532 KB
実行使用メモリ 11,008 KB
最終ジャッジ日時 2024-12-27 12:21:40
合計ジャッジ時間 10,881 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 1 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 2 ms
5,248 KB
testcase_09 AC 2 ms
5,248 KB
testcase_10 AC 2 ms
5,248 KB
testcase_11 AC 2 ms
5,248 KB
testcase_12 AC 2 ms
5,248 KB
testcase_13 AC 76 ms
7,296 KB
testcase_14 AC 241 ms
5,632 KB
testcase_15 AC 129 ms
5,376 KB
testcase_16 AC 19 ms
5,248 KB
testcase_17 AC 109 ms
5,888 KB
testcase_18 AC 5 ms
5,248 KB
testcase_19 AC 12 ms
5,248 KB
testcase_20 AC 11 ms
5,248 KB
testcase_21 AC 63 ms
7,168 KB
testcase_22 AC 407 ms
6,664 KB
testcase_23 AC 514 ms
11,008 KB
testcase_24 AC 467 ms
10,880 KB
testcase_25 AC 507 ms
11,008 KB
testcase_26 AC 346 ms
10,880 KB
testcase_27 AC 421 ms
10,880 KB
testcase_28 AC 128 ms
10,624 KB
testcase_29 AC 521 ms
11,008 KB
testcase_30 AC 140 ms
10,752 KB
testcase_31 AC 136 ms
10,752 KB
testcase_32 AC 426 ms
10,880 KB
testcase_33 AC 1,049 ms
11,008 KB
testcase_34 AC 144 ms
10,752 KB
testcase_35 AC 676 ms
11,008 KB
testcase_36 AC 2 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main(){
  int h,w;
  cin>>h>>w;
  vector<vector<int>> a(h-2,vector<int>(w));
  rep(i,h-2) rep(j,w) cin>>a.at(i).at(j);
  vector<vector<ll>> dp(h-2,vector<ll>(w+1,1e18));
  priority_queue<pair<ll,pair<int,int>>,vector<pair<ll,pair<int,int>>>,greater<pair<ll,pair<int,int>>>> q;
  rep(i,h-2) if(a.at(i).at(0)!=-1) q.push({a.at(i).at(0),{i,0}});
  vector<int> dx={0,1,0,-1,1,-1,-1,1};
  vector<int> dy={1,0,-1,0,1,1,-1,-1};
  auto isok=[&](int x,int y){
    return 0<=x&&x<h-2&&0<=y&&y<w;
  };
  while(!q.empty()){
    auto [sc,p]=q.top();
    q.pop();
    auto [x,y]=p;
    if(dp.at(x).at(y)!=1e18) continue;
    dp.at(x).at(y)=sc;
    rep(i,8){
      int nx=x+dx.at(i);
      int ny=y+dy.at(i);
      if(isok(nx,ny)&&a.at(nx).at(ny)!=-1) q.push({sc+a.at(nx).at(ny),{nx,ny}});
    }
  }
  ll ans=1e18;
  rep(i,h-2){
    ans=min(ans,dp.at(i).at(w-1));
  }
  if(ans==1e18) ans=-1;
  cout<<ans<<endl;
}
0