結果

問題 No.2328 Build Walls
ユーザー umezoumezo
提出日時 2023-05-28 16:10:48
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 295 ms / 3,000 ms
コード長 2,067 bytes
コンパイル時間 2,546 ms
コンパイル使用メモリ 214,272 KB
実行使用メモリ 72,240 KB
最終ジャッジ日時 2023-08-27 13:46:06
合計ジャッジ時間 7,396 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,380 KB
testcase_01 AC 2 ms
4,380 KB
testcase_02 AC 2 ms
4,376 KB
testcase_03 AC 2 ms
4,384 KB
testcase_04 AC 1 ms
4,376 KB
testcase_05 AC 2 ms
4,376 KB
testcase_06 AC 1 ms
4,380 KB
testcase_07 AC 1 ms
4,380 KB
testcase_08 AC 2 ms
4,380 KB
testcase_09 AC 2 ms
4,380 KB
testcase_10 AC 2 ms
4,376 KB
testcase_11 AC 2 ms
4,376 KB
testcase_12 AC 2 ms
4,380 KB
testcase_13 AC 58 ms
19,216 KB
testcase_14 AC 80 ms
19,856 KB
testcase_15 AC 66 ms
15,184 KB
testcase_16 AC 12 ms
5,324 KB
testcase_17 AC 62 ms
14,736 KB
testcase_18 AC 3 ms
4,376 KB
testcase_19 AC 8 ms
4,864 KB
testcase_20 AC 6 ms
4,380 KB
testcase_21 AC 32 ms
13,300 KB
testcase_22 AC 121 ms
28,420 KB
testcase_23 AC 247 ms
48,876 KB
testcase_24 AC 228 ms
45,112 KB
testcase_25 AC 245 ms
47,952 KB
testcase_26 AC 188 ms
38,212 KB
testcase_27 AC 217 ms
43,264 KB
testcase_28 AC 54 ms
23,276 KB
testcase_29 AC 245 ms
49,060 KB
testcase_30 AC 104 ms
33,252 KB
testcase_31 AC 91 ms
30,672 KB
testcase_32 AC 214 ms
42,348 KB
testcase_33 AC 295 ms
72,240 KB
testcase_34 AC 111 ms
34,200 KB
testcase_35 AC 280 ms
60,136 KB
testcase_36 AC 2 ms
4,380 KB
権限があれば一括ダウンロードができます

ソースコード

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;

const int INF=1e9;
struct Edge{
  int to;
  int w;
  Edge(int to,ll w) : to(to),w(w) {}
};

using Graph=vector<vector<Edge>>;
using pli=pair<int,int>;

template<class T> bool chmin(T& a,T b){
  if(a>b){
    a=b;
    return true;
  }
  return false;
}

Graph G;
vector<int> dijkstra(int s){
  int n=G.size();
  vector<int> dist(n,INF);
  dist[s]=0;
  
  priority_queue<pli,vector<pli>,greater<pli>> que;
  que.push({dist[s],s});
  
  while(!que.empty()){
    int v=que.top().second;
    int d=que.top().first;
    que.pop();
    
    if(d>dist[v]) continue;
    
    for(auto e:G[v]){
      if(chmin(dist[e.to],dist[v]+e.w)){
        que.push({dist[e.to],e.to});
      }
    }
  }
  return dist;
}

int main(){
  ios::sync_with_stdio(false);
  std::cin.tie(nullptr);

  int h,w;
  cin>>h>>w;
  
  auto f=[&](int x,int y){
    return x*w+y;
  };
  
  G.resize((h-2)*w+2);
  int s=(h-2)*w,t=s+1;
  vector<vector<int>> A(h-2,vector<int>(w));
  rep(i,h-2) rep(j,w) cin>>A[i][j];
  
  rep(i,h-2){
    if(A[i][0]!=0) G[s].push_back(Edge(f(i,0),A[i][0]));
  }
  rep(i,h-2){
    if(A[i][w-1]!=0) G[f(i,w-1)].push_back(Edge(t,0));
  }                               
  rep(i,h-2) rep(j,w){
    if(A[i][j]==-1) continue;
    if(i<h-3 && A[i+1][j]!=-1){
      G[f(i,j)].push_back(Edge(f(i+1,j),A[i+1][j]));
      G[f(i+1,j)].push_back(Edge(f(i,j),A[i][j]));
    }
    if(i<h-3 && j<w-1 && A[i+1][j+1]!=-1){
      G[f(i,j)].push_back(Edge(f(i+1,j+1),A[i+1][j+1]));
      G[f(i+1,j+1)].push_back(Edge(f(i,j),A[i][j]));
    }
    if(j<w-1 && A[i][j+1]!=-1){
      G[f(i,j)].push_back(Edge(f(i,j+1),A[i][j+1]));
      G[f(i,j+1)].push_back(Edge(f(i,j),A[i][j]));
    }
    if(i && j<w-1 && A[i-1][j+1]!=-1){
      G[f(i,j)].push_back(Edge(f(i-1,j+1),A[i-1][j+1]));
      G[f(i-1,j+1)].push_back(Edge(f(i,j),A[i][j]));
    }
  }
  vector<int> dis=dijkstra(s);
  if(dis[t]==INF) cout<<-1<<endl;
  else cout<<dis[t]<<endl;
  
  return 0;
}
0