結果

問題 No.2652 [Cherry 6th Tune N] Δρονε χιρχλινγ
ユーザー kakel-sankakel-san
提出日時 2024-02-23 23:03:11
言語 C#
(.NET 8.0.203)
結果
AC  
実行時間 419 ms / 2,000 ms
コード長 1,488 bytes
コンパイル時間 8,575 ms
コンパイル使用メモリ 168,180 KB
実行使用メモリ 235,020 KB
最終ジャッジ日時 2024-09-29 08:23:26
合計ジャッジ時間 41,084 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
30,336 KB
testcase_01 AC 385 ms
77,896 KB
testcase_02 AC 344 ms
77,676 KB
testcase_03 AC 337 ms
78,540 KB
testcase_04 AC 318 ms
81,236 KB
testcase_05 AC 318 ms
82,188 KB
testcase_06 AC 311 ms
82,428 KB
testcase_07 AC 403 ms
80,992 KB
testcase_08 AC 346 ms
81,548 KB
testcase_09 AC 419 ms
84,092 KB
testcase_10 AC 353 ms
77,260 KB
testcase_11 AC 312 ms
75,944 KB
testcase_12 AC 305 ms
79,320 KB
testcase_13 AC 338 ms
84,348 KB
testcase_14 AC 299 ms
75,976 KB
testcase_15 AC 343 ms
80,140 KB
testcase_16 AC 321 ms
80,560 KB
testcase_17 AC 318 ms
79,536 KB
testcase_18 AC 340 ms
85,852 KB
testcase_19 AC 369 ms
80,372 KB
testcase_20 AC 343 ms
76,156 KB
testcase_21 AC 319 ms
76,296 KB
testcase_22 AC 323 ms
76,176 KB
testcase_23 AC 322 ms
76,300 KB
testcase_24 AC 324 ms
76,056 KB
testcase_25 AC 327 ms
76,160 KB
testcase_26 AC 346 ms
76,420 KB
testcase_27 AC 341 ms
75,960 KB
testcase_28 AC 326 ms
76,308 KB
testcase_29 AC 417 ms
76,312 KB
testcase_30 AC 319 ms
76,284 KB
testcase_31 AC 326 ms
76,412 KB
testcase_32 AC 340 ms
76,388 KB
testcase_33 AC 326 ms
76,412 KB
testcase_34 AC 416 ms
76,396 KB
testcase_35 AC 327 ms
76,408 KB
testcase_36 AC 327 ms
76,396 KB
testcase_37 AC 372 ms
76,220 KB
testcase_38 AC 325 ms
76,408 KB
testcase_39 AC 316 ms
76,212 KB
testcase_40 AC 289 ms
74,188 KB
testcase_41 AC 282 ms
235,020 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (82 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 t = NN;
        var ans = new List<string>();
        for (var u = 0; u < t; ++u)
        {
            var c = NList;
            var (n, l) = (c[0], c[1]);
            var map = NArr(n);
            ans.AddRange(Drone(n, l, map));
        }
        WriteLine(string.Join("\n", ans));
    }
    static List<string> Drone(int n, int l, int[][] map)
    {
        var div = (int)Math.Sqrt(n);
        var width = (l + div) / div;
        var list = new List<int[]>[div];
        for (var i = 0; i < list.Length; ++i) list[i] = new List<int[]>();
        for (var i = 0; i < n; ++i)
        {
            list[map[i][1] / width].Add(map[i]);
        }
        for (var i = 0; i < list.Length; ++i)
        {
            if (i % 2 == 0) list[i].Sort((l, r) => l[0].CompareTo(r[0]));
            else list[i].Sort((l, r) => r[0].CompareTo(l[0]));
        }
        var ans = new List<string>{ n.ToString() };
        foreach (var li in list) foreach (var m in li) ans.Add($"{m[0]} {m[1]}");
        return ans;
    }
}
0