結果
問題 | No.2354 Poor Sight in Winter |
ユーザー | FplusFplusF |
提出日時 | 2023-06-16 22:42:17 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 2,076 bytes |
コンパイル時間 | 2,384 ms |
コンパイル使用メモリ | 219,188 KB |
実行使用メモリ | 7,432 KB |
最終ジャッジ日時 | 2024-06-24 15:27:30 |
合計ジャッジ時間 | 5,499 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | RE | - |
testcase_04 | AC | 2 ms
6,940 KB |
testcase_05 | RE | - |
testcase_06 | AC | 2 ms
6,940 KB |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | AC | 2 ms
6,940 KB |
testcase_11 | AC | 110 ms
7,172 KB |
testcase_12 | AC | 107 ms
7,300 KB |
testcase_13 | AC | 131 ms
7,432 KB |
testcase_14 | AC | 130 ms
7,376 KB |
testcase_15 | AC | 123 ms
7,300 KB |
testcase_16 | AC | 126 ms
7,424 KB |
testcase_17 | AC | 121 ms
7,296 KB |
testcase_18 | AC | 52 ms
6,940 KB |
testcase_19 | AC | 85 ms
6,944 KB |
testcase_20 | AC | 59 ms
6,940 KB |
testcase_21 | AC | 4 ms
6,940 KB |
testcase_22 | AC | 25 ms
6,944 KB |
testcase_23 | AC | 25 ms
6,944 KB |
testcase_24 | AC | 76 ms
6,944 KB |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | RE | - |
testcase_28 | AC | 4 ms
6,944 KB |
ソースコード
#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]); g.add_edge(i,j,(d-mid+mid-1)/mid); } } g.dijkstra(n); if(g.d[n+1]<=k) ok=mid; else ng=mid; } cout << ok << '\n'; }