結果

問題 No.2652 [Cherry 6th Tune N] Δρονε χιρχλινγ
ユーザー phsplsphspls
提出日時 2024-02-24 20:13:54
言語 Rust
(1.77.0 + proconio)
結果
AC  
実行時間 112 ms / 2,000 ms
コード長 1,681 bytes
コンパイル時間 13,703 ms
コンパイル使用メモリ 378,520 KB
実行使用メモリ 26,812 KB
最終ジャッジ日時 2024-09-29 10:15:21
合計ジャッジ時間 36,083 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 96 ms
5,248 KB
testcase_02 AC 95 ms
5,248 KB
testcase_03 AC 87 ms
5,248 KB
testcase_04 AC 96 ms
5,248 KB
testcase_05 AC 99 ms
5,248 KB
testcase_06 AC 100 ms
5,248 KB
testcase_07 AC 108 ms
12,876 KB
testcase_08 AC 92 ms
12,448 KB
testcase_09 AC 94 ms
14,932 KB
testcase_10 AC 94 ms
13,672 KB
testcase_11 AC 91 ms
13,088 KB
testcase_12 AC 91 ms
14,692 KB
testcase_13 AC 96 ms
19,368 KB
testcase_14 AC 92 ms
25,372 KB
testcase_15 AC 91 ms
18,620 KB
testcase_16 AC 94 ms
14,688 KB
testcase_17 AC 95 ms
16,804 KB
testcase_18 AC 100 ms
17,632 KB
testcase_19 AC 97 ms
18,692 KB
testcase_20 AC 96 ms
25,960 KB
testcase_21 AC 98 ms
26,648 KB
testcase_22 AC 96 ms
26,220 KB
testcase_23 AC 99 ms
26,340 KB
testcase_24 AC 98 ms
26,212 KB
testcase_25 AC 100 ms
26,672 KB
testcase_26 AC 96 ms
26,328 KB
testcase_27 AC 104 ms
25,748 KB
testcase_28 AC 99 ms
26,364 KB
testcase_29 AC 100 ms
26,056 KB
testcase_30 AC 105 ms
26,812 KB
testcase_31 AC 112 ms
26,688 KB
testcase_32 AC 100 ms
26,564 KB
testcase_33 AC 99 ms
26,704 KB
testcase_34 AC 100 ms
26,560 KB
testcase_35 AC 96 ms
26,564 KB
testcase_36 AC 105 ms
26,704 KB
testcase_37 AC 98 ms
26,696 KB
testcase_38 AC 97 ms
26,684 KB
testcase_39 AC 100 ms
26,560 KB
testcase_40 AC 80 ms
23,180 KB
testcase_41 AC 76 ms
24,396 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

fn main() {
    let mut t = String::new();
    std::io::stdin().read_line(&mut t).ok();
    let t: usize = t.trim().parse().unwrap();
    for _ in 0..t {
        let mut nl = String::new();
        std::io::stdin().read_line(&mut nl).ok();
        let nl: Vec<usize> = nl.trim().split_whitespace().map(|s| s.parse().unwrap()).collect();
        let n = nl[0];
        let l = nl[1];
        let points = (0..n).map(|_| {
                let mut temmp = String::new();
                std::io::stdin().read_line(&mut temmp).ok();
                let temmp: Vec<usize> = temmp.trim().split_whitespace().map(|s| s.parse().unwrap()).collect();
                (temmp[0], temmp[1])
            })
            .collect::<Vec<_>>();

        let unit = (l as f64 / (n as f64).sqrt()).ceil() as usize;
        let size = l / unit + if l % unit > 0 { 1 } else { 0 };
        let mut blocks = vec![vec![]; size];
        for &(x, y) in points.iter() {
            blocks[y/unit].push((x, y));
        }
        for i in 0..size {
            blocks[i].sort();
        }
        let mut result = Vec::with_capacity(n);
        let mut rev = false;
        for i in 0..size {
            if blocks[i].is_empty() { continue; }
            if rev {
                for &p in blocks[i].iter().rev() {
                    result.push(p);
                }
            } else {
                for &p in blocks[i].iter() {
                    result.push(p);
                }
            }
            rev = !rev;
        }
        println!("{n}");
        let result = result.into_iter().map(|p| format!("{} {}", p.0, p.1)).collect::<Vec<_>>();
        println!("{}", result.join("\n"));
    }
}
0