結果

問題 No.2354 Poor Sight in Winter
ユーザー FplusFplusFFplusFplusF
提出日時 2023-06-17 06:29:30
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 139 ms / 2,000 ms
コード長 2,197 bytes
コンパイル時間 2,687 ms
コンパイル使用メモリ 217,644 KB
実行使用メモリ 7,432 KB
最終ジャッジ日時 2024-06-24 23:13:17
合計ジャッジ時間 5,150 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 125 ms
7,304 KB
testcase_12 AC 120 ms
7,296 KB
testcase_13 AC 139 ms
7,432 KB
testcase_14 AC 136 ms
7,428 KB
testcase_15 AC 130 ms
7,296 KB
testcase_16 AC 133 ms
7,300 KB
testcase_17 AC 128 ms
7,300 KB
testcase_18 AC 54 ms
5,620 KB
testcase_19 AC 92 ms
6,656 KB
testcase_20 AC 62 ms
5,632 KB
testcase_21 AC 5 ms
5,376 KB
testcase_22 AC 27 ms
5,376 KB
testcase_23 AC 26 ms
5,376 KB
testcase_24 AC 82 ms
6,268 KB
testcase_25 AC 18 ms
5,376 KB
testcase_26 AC 14 ms
5,376 KB
testcase_27 AC 3 ms
5,376 KB
testcase_28 AC 4 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll=long long;
using pll=pair<ll,ll>;
using tll=tuple<ll,ll,ll>;
using ld=long double;
const ll INF=(1ll<<60);
#define rep(i,n) for (ll i=0;i<(ll)(n);i++)
#define all(v) v.begin(),v.end()
template<class T> void chmin(T &a,T b){
    if(a>b){
        a=b;
    }
}
template<class T> void chmax(T &a,T b){
    if(a<b){
        a=b;
    }
}
struct edge{
    ll to;
	ll cost;
	edge(ll to,ll cost) : to(to),cost(cost) {};
};
struct graph{
    ll v;
    vector<vector<edge>> g;
    vector<ll> d,prev;
    graph(ll n){
        v=n;
        g.resize(v);
        d.resize(v,INF);
        prev.resize(v,-1);
    }
    void add_edge(ll s,ll t,ll cost){
        g[s].push_back({t,cost});
    }
    void dijkstra(ll s){
        rep(i,d.size()){
            d[i]=INF;
        }
        priority_queue<pll,vector<pll>,greater<pll>> pq;
        d[s]=0;
        pq.push({0,s});
        while(!pq.empty()){
            ll x_dist,x_vertex;
            tie(x_dist,x_vertex)=pq.top();
            pq.pop();
            if(d[x_vertex]<x_dist) continue;
            for(auto edge:g[x_vertex]){
                if(d[x_vertex]+edge.cost<d[edge.to]){
                    d[edge.to]=d[x_vertex]+edge.cost;
                    prev[edge.to]=x_vertex;
                    pq.push({d[edge.to],edge.to});
                }
            }
        }
    }
};
int main(){
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    ll n,k;
    cin >> n >> k;
    ll sx,sy,gx,gy;
    cin >> sx >> sy >> gx >> gy;
    vector<ll> x(n),y(n);
    rep(i,n) cin >> x[i] >> y[i];
    x.push_back(sx);
    y.push_back(sy);
    x.push_back(gx);
    y.push_back(gy);
    ll ok=2e5,ng=-1;
    while(1<abs(ok-ng)){
        ll mid=(ok+ng)/2;
        graph g(n+2);
        rep(i,n+2){
            rep(j,n+2){
                if(i==j) continue;
                ll d=abs(x[i]-x[j])+abs(y[i]-y[j]);
                if(mid==0){
                    if(d<=mid) g.add_edge(i,j,0);
                }else{
                    g.add_edge(i,j,(d+mid-1)/mid-1);
                }
            }
        }
        g.dijkstra(n);
        if(g.d[n+1]<=k) ok=mid;
        else ng=mid;
    }
    cout << ok << '\n';
}
0