結果

問題 No.2354 Poor Sight in Winter
ユーザー rniyarniya
提出日時 2023-06-16 21:50:37
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
RE  
実行時間 -
コード長 2,174 bytes
コンパイル時間 2,098 ms
コンパイル使用メモリ 202,012 KB
実行使用メモリ 4,500 KB
最終ジャッジ日時 2023-09-06 19:21:44
合計ジャッジ時間 4,466 ms
ジャッジサーバーID
(参考情報)
judge15 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,380 KB
testcase_01 AC 1 ms
4,376 KB
testcase_02 AC 1 ms
4,380 KB
testcase_03 RE -
testcase_04 AC 2 ms
4,376 KB
testcase_05 RE -
testcase_06 AC 2 ms
4,376 KB
testcase_07 RE -
testcase_08 RE -
testcase_09 RE -
testcase_10 AC 1 ms
4,376 KB
testcase_11 AC 28 ms
4,376 KB
testcase_12 AC 28 ms
4,376 KB
testcase_13 AC 31 ms
4,376 KB
testcase_14 AC 31 ms
4,376 KB
testcase_15 AC 28 ms
4,376 KB
testcase_16 AC 30 ms
4,376 KB
testcase_17 AC 30 ms
4,376 KB
testcase_18 AC 11 ms
4,380 KB
testcase_19 AC 20 ms
4,376 KB
testcase_20 AC 13 ms
4,384 KB
testcase_21 AC 2 ms
4,380 KB
testcase_22 AC 7 ms
4,376 KB
testcase_23 AC 8 ms
4,376 KB
testcase_24 AC 18 ms
4,376 KB
testcase_25 RE -
testcase_26 RE -
testcase_27 RE -
testcase_28 AC 2 ms
4,380 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#ifdef LOCAL
#include <debug.hpp>
#else
#define debug(...) void(0)
#endif

using namespace std;

typedef long long ll;
#define all(x) begin(x), end(x)
constexpr int INF = (1 << 30) - 1;
constexpr long long IINF = (1LL << 60) - 1;
constexpr int dx[4] = {1, 0, -1, 0}, dy[4] = {0, 1, 0, -1};

template <class T> istream& operator>>(istream& is, vector<T>& v) {
    for (auto& x : v) is >> x;
    return is;
}

template <class T> ostream& operator<<(ostream& os, const vector<T>& v) {
    auto sep = "";
    for (const auto& x : v) os << exchange(sep, " ") << x;
    return os;
}

template <class T, class U = T> bool chmin(T& x, U&& y) { return y < x and (x = forward<U>(y), true); }

template <class T, class U = T> bool chmax(T& x, U&& y) { return x < y and (x = forward<U>(y), true); }

template <class T> void mkuni(vector<T>& v) {
    sort(begin(v), end(v));
    v.erase(unique(begin(v), end(v)), end(v));
}

template <class T> int lwb(const vector<T>& v, const T& x) { return lower_bound(begin(v), end(v), x) - begin(v); }

int main() {
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    int N, K;
    cin >> N >> K;
    vector<int> x(N + 2), y(N + 2);
    cin >> x[N] >> y[N] >> x[N + 1] >> y[N + 1];
    for (int i = 0; i < N; i++) cin >> x[i] >> y[i];

    auto d = [&](int i, int j) { return abs(x[i] - x[j]) + abs(y[i] - y[j]); };
    auto calc = [&](int x) {
        vector<int> dp(N + 2, INF);
        vector<bool> seen(N + 2, false);
        dp[N] = 0;
        while (true) {
            int argmin = -1, mini = INF;
            for (int i = 0; i < N + 2; i++) {
                if (seen[i]) continue;
                if (chmin(mini, dp[i])) argmin = i;
            }
            if (argmin == -1) break;
            seen[argmin] = true;
            for (int i = 0; i < N + 2; i++) {
                if (i == argmin) continue;
                chmin(dp[i], dp[argmin] + (d(argmin, i) - 1) / x);
            }
        }
        return dp[N + 1];
    };

    int lb = -1, ub = 500010;
    while (ub - lb > 1) {
        int mid = (ub + lb) >> 1;
        (calc(mid) <= K ? ub : lb) = mid;
    }
    cout << ub << '\n';
    return 0;
}
0