結果

問題 No.2354 Poor Sight in Winter
ユーザー random contestantrandom contestant
提出日時 2023-06-16 22:31:28
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
RE  
実行時間 -
コード長 1,657 bytes
コンパイル時間 4,602 ms
コンパイル使用メモリ 268,972 KB
実行使用メモリ 7,552 KB
最終ジャッジ日時 2024-06-24 15:08:36
合計ジャッジ時間 7,068 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 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,944 KB
testcase_05 RE -
testcase_06 AC 2 ms
6,940 KB
testcase_07 RE -
testcase_08 RE -
testcase_09 RE -
testcase_10 AC 3 ms
6,944 KB
testcase_11 AC 62 ms
7,296 KB
testcase_12 AC 63 ms
7,424 KB
testcase_13 AC 82 ms
7,424 KB
testcase_14 AC 75 ms
7,424 KB
testcase_15 AC 66 ms
7,552 KB
testcase_16 AC 72 ms
7,424 KB
testcase_17 AC 74 ms
7,424 KB
testcase_18 AC 27 ms
6,940 KB
testcase_19 AC 51 ms
6,944 KB
testcase_20 AC 31 ms
6,944 KB
testcase_21 AC 4 ms
6,940 KB
testcase_22 AC 16 ms
6,944 KB
testcase_23 AC 16 ms
6,944 KB
testcase_24 AC 42 ms
6,940 KB
testcase_25 RE -
testcase_26 RE -
testcase_27 RE -
testcase_28 AC 3 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

// #define _GLIBCXX_DEBUG
#include <bits/stdc++.h>
using namespace std;
#include <atcoder/all>
using namespace atcoder;
using ll = long long;
#define rep(i,n) for (ll i = 0; i < (n); ++i)
using vl = vector<ll>;
using vvl = vector<vl>;
using P = pair<ll,ll>;
#define pb push_back
#define int long long
#define double long double
#define INF (ll) 3e18
// Ctrl + Shift + B コンパイル
// Ctrl + C 中断
// ./m 実行


signed main(){
  int n, k; cin >> n >> k;
  int ok = 1000000;
  int ng = -1;
  int sx, sy, gx, gy;
  cin >> sx >> sy >> gx >> gy;
  vector<P> xy(n);
  rep(i,n) cin >> xy[i].first >> xy[i].second;
  xy.emplace_back(sx, sy);
  xy.emplace_back(gx, gy);
  n += 2;
  vector<vector<P>> E(n); // 重み付きグラフへ
  rep(i,n){
    rep(j,n){
      if (i == j) continue;
      E[i].emplace_back(j, abs(xy[i].first-xy[j].first) + abs(xy[i].second-xy[j].second));
    }
  }
  while(ok - ng != 1){
    int mid = (ok + ng) / 2;
    priority_queue<P, vector<P>, greater<P>> pq;
    pq.emplace(0, n-2);
    vl dist(n, INF);
    dist[n-2] = 0;
    while(pq.size()){
      auto [cost, now] = pq.top(); pq.pop();
      if (dist[now] != cost) continue;
      for(auto [to, w] : E[now]){
        if (dist[to] <= cost + (w-1) / mid) continue;
        dist[to] = cost + (w-1) / mid;
        pq.emplace(dist[to], to);
      }
    }
    if (dist[n-1] <= k) ok = mid;
    else ng = mid;
  }
  cout << ok << endl;
}

// 単に明かりを配置すればよいわけではなく
// 例えば k = 2 (0,0) (6,6)なら
// (3,3)においてはダメで、2,2 4,4 と配置する
// Nが小さいので、視界で二分探索すればよいのではないか。
0