結果

問題 No.873 バイナリ、ヤバいなり!w
ユーザー phsplsphspls
提出日時 2023-01-03 23:40:31
言語 Rust
(1.77.0 + proconio)
結果
AC  
実行時間 258 ms / 2,000 ms
コード長 1,685 bytes
コンパイル時間 13,423 ms
コンパイル使用メモリ 378,288 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-05 07:39:12
合計ジャッジ時間 15,030 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 109 ms
5,248 KB
testcase_01 AC 54 ms
5,376 KB
testcase_02 AC 250 ms
5,376 KB
testcase_03 AC 200 ms
5,376 KB
testcase_04 AC 0 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 0 ms
5,376 KB
testcase_08 AC 50 ms
5,376 KB
testcase_09 AC 1 ms
5,376 KB
testcase_10 AC 1 ms
5,376 KB
testcase_11 AC 0 ms
5,376 KB
testcase_12 AC 12 ms
5,376 KB
testcase_13 AC 1 ms
5,376 KB
testcase_14 AC 1 ms
5,376 KB
testcase_15 AC 1 ms
5,376 KB
testcase_16 AC 1 ms
5,376 KB
testcase_17 AC 1 ms
5,376 KB
testcase_18 AC 1 ms
5,376 KB
testcase_19 AC 0 ms
5,376 KB
testcase_20 AC 1 ms
5,376 KB
testcase_21 AC 1 ms
5,376 KB
testcase_22 AC 1 ms
5,376 KB
testcase_23 AC 1 ms
5,376 KB
testcase_24 AC 1 ms
5,376 KB
testcase_25 AC 1 ms
5,376 KB
testcase_26 AC 0 ms
5,376 KB
testcase_27 AC 1 ms
5,376 KB
testcase_28 AC 0 ms
5,376 KB
testcase_29 AC 1 ms
5,376 KB
testcase_30 AC 0 ms
5,376 KB
testcase_31 AC 0 ms
5,376 KB
testcase_32 AC 7 ms
5,376 KB
testcase_33 AC 2 ms
5,376 KB
testcase_34 AC 31 ms
5,376 KB
testcase_35 AC 256 ms
5,376 KB
testcase_36 AC 132 ms
5,376 KB
testcase_37 AC 258 ms
5,376 KB
testcase_38 AC 250 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

use std::collections::VecDeque;


const INF: usize = 1usize << 60;

fn get_priority(length: usize) -> usize {
    if length % 2 == 1 {
        length
    } else {
        INF - length
    }
}

fn main() {
    let mut n = String::new();
    std::io::stdin().read_line(&mut n).ok();
    let n: usize = n.trim().parse().unwrap();

    let mut dp = vec![INF; n+1];
    dp[0] = 0;
    for i in 1..=n {
        for j in 1.. {
            let val = j * j;
            if val > i { break; }
            dp[i] = dp[i].min(dp[i-val]+j);
        }
    }
    let mut use_lengths = vec![];
    let mut target = n;
    while target > 0 {
        let mut cands = vec![];
        for i in 1.. {
            let val = i*i;
            if val > target { break; }
            if dp[target-val]+i == dp[target] {
                cands.push(i);
            }
        }
        cands.sort_by_key(|&v| get_priority(v));
        use_lengths.push(cands[0]);
        target -= cands[0] * cands[0];
    }
    use_lengths.sort_by_key(|&v| get_priority(v));
    let odds = use_lengths.iter().filter(|&&v| v % 2 == 1).copied().collect::<Vec<_>>();
    let mut evens = use_lengths.iter().filter(|&&v| v % 2 == 0).copied().collect::<VecDeque<_>>();
    let mut result = String::new();
    for &v in odds.iter() {
        result.push_str(format!("0{}", "10".repeat(v/2)).as_str());
    }
    let limit = evens.len();
    for i in 0..limit {
        if i % 2 == 0 {
            result.push_str(format!("{}", "01".repeat(evens.pop_front().unwrap()/2)).as_str());
        } else {
            result.push_str(format!("{}", "10".repeat(evens.pop_back().unwrap()/2)).as_str());
        }
    }
    println!("{}", result);
}
0