結果

問題 No.2328 Build Walls
ユーザー keisuke6keisuke6
提出日時 2023-05-28 14:34:42
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 461 ms / 3,000 ms
コード長 1,532 bytes
コンパイル時間 2,228 ms
コンパイル使用メモリ 215,648 KB
実行使用メモリ 118,016 KB
最終ジャッジ日時 2024-06-08 05:45:41
合計ジャッジ時間 10,137 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 1 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 1 ms
5,376 KB
testcase_13 AC 156 ms
63,872 KB
testcase_14 AC 115 ms
33,024 KB
testcase_15 AC 103 ms
32,768 KB
testcase_16 AC 21 ms
9,728 KB
testcase_17 AC 125 ms
41,344 KB
testcase_18 AC 5 ms
5,376 KB
testcase_19 AC 24 ms
11,648 KB
testcase_20 AC 11 ms
6,272 KB
testcase_21 AC 140 ms
58,624 KB
testcase_22 AC 168 ms
46,592 KB
testcase_23 AC 410 ms
118,016 KB
testcase_24 AC 400 ms
118,016 KB
testcase_25 AC 413 ms
117,888 KB
testcase_26 AC 378 ms
117,888 KB
testcase_27 AC 392 ms
118,016 KB
testcase_28 AC 284 ms
118,016 KB
testcase_29 AC 419 ms
118,016 KB
testcase_30 AC 300 ms
118,016 KB
testcase_31 AC 300 ms
118,016 KB
testcase_32 AC 404 ms
118,016 KB
testcase_33 AC 461 ms
118,016 KB
testcase_34 AC 301 ms
118,016 KB
testcase_35 AC 434 ms
118,016 KB
testcase_36 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define int long long
signed main(){
  int H,W;
  cin>>H>>W;
  H -= 2;
  vector<vector<int>> A(H,vector<int>(W));
  for(int i=0;i<H;i++)for(int j=0;j<W;j++){
  	cin>>A[i][j];
  	if(A[i][j] == -1) A[i][j] = 1e18;
  } 
  vector<vector<pair<int,int>>> G(H*W);
  vector<int> dist(H*W,1e18);
  for(int i=0;i<H;i++)for(int j=0;j<W;j++){
  	if(i != 0) G[i*W+j].push_back({(i-1)*W+j,A[i-1][j]});
  	if(j != 0) G[i*W+j].push_back({(i)*W+j-1,A[i][j-1]});
  	if(i != H-1) G[i*W+j].push_back({(i+1)*W+j,A[i+1][j]});
  	if(j != W-1) G[i*W+j].push_back({(i)*W+j+1,A[i][j+1]});
  	if(i != 0 && j != 0) G[i*W+j].push_back({(i-1)*W+j-1,A[i-1][j-1]});
  	if(j != 0 && i != H-1) G[i*W+j].push_back({(i+1)*W+j-1,A[i+1][j-1]});
  	if(i != 0 && j != W-1) G[i*W+j].push_back({(i-1)*W+j+1,A[i-1][j+1]});
  	if(j != W-1 && i != H-1) G[i*W+j].push_back({(i+1)*W+j+1,A[i+1][j+1]});
  }
  priority_queue<pair<int,int>,vector<pair<int,int>>,greater<pair<int,int>>> pq;
  for(int i=0;i<H;i++){
  	dist[i*W] = A[i][0];
  	pq.push({dist[i*W],i*W});
  }
  while(!pq.empty()){
  	int u,w;
  	tie(w,u) = pq.top();
  	pq.pop();
  	if(dist[u] != w) continue;
  	for(auto y:G[u]){
  		int v,x;
  		tie(v,x) = y;
  		if(dist[v] <= w+x) continue;
  		dist[v] = w+x;
  		pq.push({dist[v],v});
  	}
  }
  int ans = 1e18;
  for(int i=0;i<H;i++){
  	ans = min(ans,dist[i*W+W-1]);
  }
  /*for(int i=0;i<H;i++){
  	for(int j=0;j<W;j++){
  		cout<<dist[i*W+j]<<' ';
  	}
  	cout<<endl;
  }*/
  cout<<(ans == 1e18 ? -1 : ans)<<endl;
}
0