結果

問題 No.2328 Build Walls
ユーザー umezoumezo
提出日時 2023-05-28 15:29:56
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
TLE  
実行時間 -
コード長 1,976 bytes
コンパイル時間 6,114 ms
コンパイル使用メモリ 215,704 KB
実行使用メモリ 86,144 KB
最終ジャッジ日時 2024-12-27 07:01:17
合計ジャッジ時間 55,581 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
10,496 KB
testcase_01 AC 2 ms
25,176 KB
testcase_02 AC 1 ms
13,636 KB
testcase_03 AC 2 ms
10,496 KB
testcase_04 AC 2 ms
10,496 KB
testcase_05 AC 1 ms
33,976 KB
testcase_06 AC 2 ms
13,636 KB
testcase_07 AC 2 ms
10,496 KB
testcase_08 AC 2 ms
10,624 KB
testcase_09 AC 2 ms
50,440 KB
testcase_10 AC 2 ms
10,624 KB
testcase_11 AC 2 ms
53,504 KB
testcase_12 AC 1 ms
10,624 KB
testcase_13 AC 95 ms
57,752 KB
testcase_14 TLE -
testcase_15 TLE -
testcase_16 AC 53 ms
10,624 KB
testcase_17 AC 2,244 ms
63,932 KB
testcase_18 AC 13 ms
10,624 KB
testcase_19 AC 9 ms
47,616 KB
testcase_20 AC 34 ms
10,624 KB
testcase_21 AC 43 ms
86,144 KB
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 AC 64 ms
23,220 KB
testcase_29 TLE -
testcase_30 AC 198 ms
33,408 KB
testcase_31 AC 181 ms
30,836 KB
testcase_32 TLE -
testcase_33 TLE -
testcase_34 AC 222 ms
34,328 KB
testcase_35 TLE -
testcase_36 AC 3 ms
65,564 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);
  vector<vector<int>> A(h-2,vector<int>(w));
  rep(i,h-2) rep(j,w) cin>>A[i][j];
  
  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]));
    }
  }
  
  int mi=INF;
  rep(i,h-2){
    if(A[i][0]==-1) continue;
    vector<int> dis=dijkstra(f(i,0));
    rep(j,h-2) mi=min(mi,dis[f(j,w-1)]+A[i][0]);
  }
  if(mi==INF) cout<<-1<<endl;
  else cout<<mi<<endl;
  
  return 0;
}
0