結果

問題 No.2923 Mayor's Job
ユーザー InTheBloomInTheBloom
提出日時 2024-10-12 14:53:20
言語 D
(dmd 2.106.1)
結果
AC  
実行時間 28 ms / 2,000 ms
コード長 1,151 bytes
コンパイル時間 4,714 ms
コンパイル使用メモリ 180,480 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-10-12 14:53:26
合計ジャッジ時間 5,006 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 1 ms
5,248 KB
testcase_03 AC 28 ms
5,248 KB
testcase_04 AC 3 ms
5,248 KB
testcase_05 AC 6 ms
5,248 KB
testcase_06 AC 14 ms
5,248 KB
testcase_07 AC 5 ms
5,248 KB
testcase_08 AC 5 ms
5,248 KB
testcase_09 AC 8 ms
5,248 KB
testcase_10 AC 5 ms
5,248 KB
testcase_11 AC 4 ms
5,248 KB
testcase_12 AC 3 ms
5,248 KB
testcase_13 AC 2 ms
5,248 KB
testcase_14 AC 2 ms
5,248 KB
testcase_15 AC 1 ms
5,248 KB
testcase_16 AC 1 ms
5,248 KB
testcase_17 AC 1 ms
5,248 KB
testcase_18 AC 1 ms
5,248 KB
testcase_19 AC 2 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import std;

void main () {
    int N, K; readln.read(N, K);
    auto H = readln.split.to!(int[]);
    auto X = new int[](N);
    auto Y = new int[](N);
    foreach (i; 0..N) {
        readln.read(X[i], Y[i]);
    }

    // Hの条件がついているので、若いものをできるだけ潰す貪欲をして良さそう。
    // 近傍探索もO(N^2)が通るので問題なし。

    auto ord = iota(N).array;
    ord.sort!((a, b) => H[a] < H[b]);

    int ans = N;
    foreach (i; 0..N) {
        int p = ord[i];
        foreach (j; i + 1..N) {
            int q = ord[j];
            if (H[q] <= H[p]) continue;

            bool deletable () {
                long K2 = 1L * K * K;
                long d = (1L * X[p] - X[q]).pow(2) + (1L * Y[p] - Y[q]).pow(2);
                return d <= K2;
            }

            if (deletable()) {
                ans--;
                break;
            }
        }
    }

    writeln(ans);
}

void read (T...) (string S, ref T args) {
    import std.conv : to;
    import std.array : split;
    auto buf = S.split;
    foreach (i, ref arg; args) {
        arg = buf[i].to!(typeof(arg));
    }
}
0