結果

問題 No.2855 Move on Grid
ユーザー umezoumezo
提出日時 2024-08-25 14:35:00
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 830 ms / 3,000 ms
コード長 1,813 bytes
コンパイル時間 3,220 ms
コンパイル使用メモリ 265,252 KB
実行使用メモリ 14,496 KB
最終ジャッジ日時 2024-08-25 14:35:32
合計ジャッジ時間 26,931 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 165 ms
6,816 KB
testcase_01 AC 258 ms
6,944 KB
testcase_02 AC 140 ms
6,944 KB
testcase_03 AC 107 ms
6,940 KB
testcase_04 AC 62 ms
6,940 KB
testcase_05 AC 168 ms
6,944 KB
testcase_06 AC 144 ms
6,940 KB
testcase_07 AC 14 ms
6,940 KB
testcase_08 AC 119 ms
6,940 KB
testcase_09 AC 62 ms
6,940 KB
testcase_10 AC 615 ms
13,440 KB
testcase_11 AC 565 ms
13,444 KB
testcase_12 AC 617 ms
13,568 KB
testcase_13 AC 570 ms
13,568 KB
testcase_14 AC 638 ms
13,440 KB
testcase_15 AC 584 ms
13,444 KB
testcase_16 AC 612 ms
13,440 KB
testcase_17 AC 575 ms
13,440 KB
testcase_18 AC 597 ms
13,568 KB
testcase_19 AC 563 ms
13,440 KB
testcase_20 AC 701 ms
13,568 KB
testcase_21 AC 700 ms
14,236 KB
testcase_22 AC 704 ms
13,564 KB
testcase_23 AC 719 ms
13,568 KB
testcase_24 AC 697 ms
13,560 KB
testcase_25 AC 786 ms
14,364 KB
testcase_26 AC 696 ms
13,440 KB
testcase_27 AC 743 ms
14,492 KB
testcase_28 AC 676 ms
13,440 KB
testcase_29 AC 694 ms
13,556 KB
testcase_30 AC 753 ms
14,360 KB
testcase_31 AC 762 ms
14,368 KB
testcase_32 AC 796 ms
14,360 KB
testcase_33 AC 814 ms
14,368 KB
testcase_34 AC 749 ms
14,496 KB
testcase_35 AC 789 ms
14,364 KB
testcase_36 AC 686 ms
14,168 KB
testcase_37 AC 776 ms
14,360 KB
testcase_38 AC 830 ms
14,488 KB
testcase_39 AC 747 ms
14,364 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;
template <class T> using V=vector<T>;
template <class T> using VV=V<V<T>>;

const ll INF=1LL<<60;

struct Edge{
  int to;
  ll w;
  Edge(int to,ll w) : to(to),w(w) {}
};

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

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

Graph G;
vector<ll> dijkstra(int s){
  int n=G.size();
  vector<ll> 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;
    ll 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 n,m,k;
  cin>>n>>m>>k;
  VV<int> A(n,V<int>(m));
  rep(i,n) rep(j,m) cin>>A[i][j];
  
  int ok=0,ng=1e9+1;
  while(ng-ok>1){
    int mid=(ok+ng)/2;
    G.resize(n*m);
    rep(i,n) rep(j,m){
      int t=i*m+j;
      if(A[i][j]<mid){
        if(j>0) G[t-1].push_back(Edge(t,1));
        if(j<m-1) G[t+1].push_back(Edge(t,1));
        if(i>0) G[t-m].push_back(Edge(t,1));
        if(i<n-1) G[t+m].push_back(Edge(t,1));
      }
      else{
        if(j>0) G[t-1].push_back(Edge(t,0));
        if(j<m-1) G[t+1].push_back(Edge(t,0));
        if(i>0) G[t-m].push_back(Edge(t,0));
        if(i<n-1) G[t+m].push_back(Edge(t,0));
      }
    }
  
    auto dis=dijkstra(0);
    int tmp=dis[n*m-1];
    if(A[0][0]<mid) tmp++;
    if(tmp<=k) ok=mid;
    else ng=mid;
    G.resize(0);
  }
  cout<<ok<<endl;
  
  return 0;
}
0