結果

問題 No.2929 Miracle Branch
ユーザー naut3naut3
提出日時 2024-10-14 20:50:32
言語 Rust
(1.77.0 + proconio)
結果
WA  
実行時間 -
コード長 2,254 bytes
コンパイル時間 15,387 ms
コンパイル使用メモリ 378,444 KB
実行使用メモリ 10,496 KB
最終ジャッジ日時 2024-10-14 20:51:06
合計ジャッジ時間 20,698 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
7,168 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 1 ms
5,248 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 1 ms
5,248 KB
testcase_19 AC 2 ms
5,248 KB
testcase_20 AC 2 ms
5,248 KB
testcase_21 AC 1 ms
5,248 KB
testcase_22 WA -
testcase_23 AC 2 ms
5,248 KB
testcase_24 AC 6 ms
5,248 KB
testcase_25 WA -
testcase_26 AC 1 ms
5,248 KB
testcase_27 AC 1 ms
5,248 KB
testcase_28 TLE -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
testcase_44 -- -
testcase_45 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#![allow(non_snake_case, unused_must_use, unused_imports)]
use std::io::{self, prelude::*};

fn main() {
    let (stdin, stdout) = (io::read_to_string(io::stdin()).unwrap(), io::stdout());
    let (mut stdin, mut buffer) = (stdin.split_whitespace(), io::BufWriter::new(stdout.lock()));
    macro_rules! input {
        ($t: ty, $n: expr) => {
            (0..$n).map(|_| input!($t)).collect::<Vec<_>>()
        };
        ($t: ty) => {
            stdin.next().unwrap().parse::<$t>().unwrap()
        };
    }

    let mut X = input!(u64);

    if X == 1 {
        writeln!(buffer, "2\n1 2\nb g");
        return;
    }

    let mut childs = vec![];
    let mut cnt = 0;

    for p in 2.. {
        if p * p > X {
            break;
        }

        if X % p != 0 {
            continue;
        }

        if p + 1 + cnt > 200_000 {
            writeln!(buffer, "-1");
            return;
        }

        let mut e = 0;

        while X % p == 0 {
            e += 1;
            X /= p;
        }

        let mut c = 1;

        for _ in 0..e / 2 {
            c *= p;
        }

        if e == 1 {
            childs.push(p);
            cnt += p + 1;
            continue;
        }

        if e % 2 == 1 {
            childs.push(c);
            childs.push(c);
            childs.push(p);
            cnt += 2 * c + p + 3;
        } else {
            childs.push(c);
            childs.push(c);
            cnt += 2 * c + 2;
        }
    }

    if X != 1 {
        childs.push(X);
        cnt += X + 1;
    }

    if cnt > 200_000 {
        writeln!(buffer, "-1");
        return;
    }

    writeln!(buffer, "{}", cnt);

    let mut is_brown = vec![false; cnt as usize];

    for i in 0..childs.len() {
        is_brown[i] = true;
    }

    for i in 0..childs.len() - 1 {
        writeln!(buffer, "{} {}", i + 1, i + 2);
    }

    let mut r = 0;
    let mut cur = childs.len();

    for c in childs {
        for _ in 0..c {
            writeln!(buffer, "{} {}", r + 1, cur + 1);
            cur += 1;
        }

        r += 1;
    }

    writeln!(
        buffer,
        "{}",
        is_brown
            .into_iter()
            .map(|b| if b { "b" } else { "g" })
            .collect::<Vec<_>>()
            .join(" ")
    );
}
0