結果

問題 No.2923 Mayor's Job
ユーザー kakel-sankakel-san
提出日時 2024-10-29 23:20:59
言語 C#
(.NET 8.0.203)
結果
AC  
実行時間 80 ms / 2,000 ms
コード長 1,172 bytes
コンパイル時間 17,319 ms
コンパイル使用メモリ 167,656 KB
実行使用メモリ 185,396 KB
最終ジャッジ日時 2024-10-29 23:21:19
合計ジャッジ時間 19,986 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 59 ms
30,196 KB
testcase_01 AC 61 ms
30,464 KB
testcase_02 AC 59 ms
30,336 KB
testcase_03 AC 80 ms
31,860 KB
testcase_04 AC 63 ms
31,104 KB
testcase_05 AC 66 ms
31,744 KB
testcase_06 AC 69 ms
32,000 KB
testcase_07 AC 67 ms
31,872 KB
testcase_08 AC 66 ms
31,868 KB
testcase_09 AC 69 ms
32,000 KB
testcase_10 AC 67 ms
31,744 KB
testcase_11 AC 63 ms
31,232 KB
testcase_12 AC 65 ms
30,972 KB
testcase_13 AC 62 ms
30,448 KB
testcase_14 AC 60 ms
30,592 KB
testcase_15 AC 60 ms
30,464 KB
testcase_16 AC 64 ms
30,208 KB
testcase_17 AC 61 ms
30,336 KB
testcase_18 AC 60 ms
30,336 KB
testcase_19 AC 61 ms
185,396 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (101 ms)。
MSBuild のバージョン 17.9.6+a4ecab324 (.NET)
  main -> /home/judge/data/code/bin/Release/net8.0/main.dll
  main -> /home/judge/data/code/bin/Release/net8.0/publish/

ソースコード

diff #

using System;
using static System.Console;
using System.Linq;
using System.Collections.Generic;

class Program
{
    static int NN => int.Parse(ReadLine());
    static int[] NList => ReadLine().Split().Select(int.Parse).ToArray();
    static int[][] NArr(long n) => Enumerable.Repeat(0, (int)n).Select(_ => NList).ToArray();
    public static void Main()
    {
        Solve();
    }
    static void Solve()
    {
        var c = NList;
        var (n, k) = (c[0], c[1]);
        var h = NList;
        var map = NArr(n);
        var order = new List<int>();
        for (var i = 0; i < n; ++i) order.Add(i);
        order.Sort((l, r) => h[l].CompareTo(h[r]));
        var ans = n;
        var k2 = (long)k * k;
        for (var i = 0; i < n; ++i) for (var j = i + 1; j < n; ++j)
        {
            if (h[order[i]] < h[order[j]] && Len(map[order[i]], map[order[j]]) <= k2)
            {
                --ans;
                break;
            }
        }
        WriteLine(ans);
    }
    static long Len(int[] a, int[] b)
    {
        return (long)(a[0] - b[0]) * (a[0] - b[0]) + (long)(a[1] - b[1]) * (a[1] - b[1]);
    }
}
0