結果

問題 No.1694 ZerOne
ユーザー koba-e964koba-e964
提出日時 2021-10-02 12:33:38
言語 Rust
(1.77.0 + proconio)
結果
AC  
実行時間 50 ms / 2,000 ms
コード長 2,298 bytes
コンパイル時間 16,114 ms
コンパイル使用メモリ 378,184 KB
実行使用メモリ 53,632 KB
最終ジャッジ日時 2024-07-20 06:11:47
合計ジャッジ時間 16,623 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 25 ms
28,928 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 4 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 5 ms
6,784 KB
testcase_09 AC 23 ms
26,880 KB
testcase_10 AC 3 ms
5,376 KB
testcase_11 AC 1 ms
5,376 KB
testcase_12 AC 1 ms
5,376 KB
testcase_13 AC 7 ms
8,832 KB
testcase_14 AC 24 ms
26,880 KB
testcase_15 AC 5 ms
5,632 KB
testcase_16 AC 3 ms
5,376 KB
testcase_17 AC 1 ms
5,376 KB
testcase_18 AC 1 ms
5,376 KB
testcase_19 AC 1 ms
5,376 KB
testcase_20 AC 50 ms
53,504 KB
testcase_21 AC 47 ms
53,504 KB
testcase_22 AC 43 ms
50,176 KB
testcase_23 AC 47 ms
53,504 KB
testcase_24 AC 46 ms
53,504 KB
testcase_25 AC 46 ms
53,632 KB
testcase_26 AC 40 ms
46,976 KB
testcase_27 AC 38 ms
43,904 KB
testcase_28 AC 18 ms
21,376 KB
testcase_29 AC 21 ms
24,960 KB
testcase_30 AC 26 ms
31,104 KB
testcase_31 AC 38 ms
43,904 KB
testcase_32 AC 33 ms
38,528 KB
testcase_33 AC 40 ms
43,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

use std::collections::*;
use std::io::Read;

fn get_word() -> String {
    let stdin = std::io::stdin();
    let mut stdin=stdin.lock();
    let mut u8b: [u8; 1] = [0];
    loop {
        let mut buf: Vec<u8> = Vec::with_capacity(16);
        loop {
            let res = stdin.read(&mut u8b);
            if res.unwrap_or(0) == 0 || u8b[0] <= b' ' {
                break;
            } else {
                buf.push(u8b[0]);
            }
        }
        if buf.len() >= 1 {
            let ret = String::from_utf8(buf).unwrap();
            return ret;
        }
    }
}

fn naive(s: &[char]) -> i64 {
    let n = s.len();
    let mut a = 0u64;
    for i in 0..n {
        if s[i] == '1' {
            a |= 1 << i;
        }
    }
    // Swapping with length 2 is sufficient.
    let mut vis = HashSet::new();
    let mut que = VecDeque::new();
    que.push_back(a);
    while let Some(v) = que.pop_front() {
        for i in 0..n - 1 {
            if ((v >> i) & 3) != 1 { continue; }
            for j in 0..n - 1 {
                if ((v >> j) & 3) != 2 { continue; }
                if (i as i32 - j as i32).abs() <= 1 { continue; }
                let sw = v ^ 3 << i ^ 3 << j;
                if vis.contains(&sw) { continue; }
                vis.insert(sw);
                que.push_back(sw);
            }
        }
    }
    
    let mut vis: Vec<_> = vis.into_iter().collect();
    vis.sort_by_key(|&x| x.reverse_bits());
    for &v in &vis {
        for j in 0..n {
            eprint!("{}", (v >> j) & 1);
        }
        eprintln!();
    }
    vis.len() as i64
}

fn main() {
    let s: Vec<_> = get_word().chars().collect();
    let n = s.len();
    let mut dp = vec![vec![vec![0i64; n * (n - 1) / 2 + 1]; n + 1]; n + 1];
    dp[0][0][0] = 1;
    for i in 0..n {
        let lim = i * (i + 1) / 2 - i;
        for j in 0..i + 1 {
            for k in 0..lim + 1 {
                let val = dp[i][j][k];
                dp[i + 1][j][k] += val;
                dp[i + 1][j + 1][k + i] += val;
            }
        }
    }
    let mut one = 0;
    let mut sum = 0;
    for i in 0..n {
        if s[i] == '1' {
            one += 1;
            sum += i;
        }
    }
    println!("{}", dp[n][one][sum]);
    if n <= 10 {
        eprintln!("naive = {}", naive(&s));
    }
}
0