結果

問題 No.1345 Beautiful BINGO
ユーザー BrightLightBrightLight
提出日時 2021-01-16 19:17:48
言語 Rust
(1.83.0 + proconio)
結果
AC  
実行時間 553 ms / 2,000 ms
コード長 2,199 bytes
コンパイル時間 15,144 ms
コンパイル使用メモリ 389,744 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-11-28 12:26:25
合計ジャッジ時間 24,186 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 1 ms
6,816 KB
testcase_02 AC 1 ms
6,820 KB
testcase_03 AC 1 ms
6,816 KB
testcase_04 AC 1 ms
6,816 KB
testcase_05 AC 1 ms
6,820 KB
testcase_06 AC 1 ms
6,816 KB
testcase_07 AC 2 ms
6,816 KB
testcase_08 AC 1 ms
6,816 KB
testcase_09 AC 1 ms
6,820 KB
testcase_10 AC 1 ms
6,820 KB
testcase_11 AC 1 ms
6,816 KB
testcase_12 AC 1 ms
6,816 KB
testcase_13 AC 2 ms
6,820 KB
testcase_14 AC 1 ms
6,816 KB
testcase_15 AC 1 ms
6,816 KB
testcase_16 AC 1 ms
6,816 KB
testcase_17 AC 1 ms
6,820 KB
testcase_18 AC 1 ms
6,820 KB
testcase_19 AC 1 ms
6,820 KB
testcase_20 AC 1 ms
6,820 KB
testcase_21 AC 1 ms
6,824 KB
testcase_22 AC 21 ms
6,820 KB
testcase_23 AC 551 ms
6,820 KB
testcase_24 AC 186 ms
6,820 KB
testcase_25 AC 10 ms
6,816 KB
testcase_26 AC 94 ms
6,820 KB
testcase_27 AC 536 ms
6,816 KB
testcase_28 AC 10 ms
6,816 KB
testcase_29 AC 94 ms
6,820 KB
testcase_30 AC 44 ms
6,816 KB
testcase_31 AC 21 ms
6,820 KB
testcase_32 AC 3 ms
6,816 KB
testcase_33 AC 540 ms
6,820 KB
testcase_34 AC 5 ms
6,816 KB
testcase_35 AC 5 ms
6,816 KB
testcase_36 AC 409 ms
6,816 KB
testcase_37 AC 4 ms
6,816 KB
testcase_38 AC 95 ms
6,820 KB
testcase_39 AC 551 ms
6,816 KB
testcase_40 AC 189 ms
6,816 KB
testcase_41 AC 166 ms
6,820 KB
testcase_42 AC 1 ms
6,816 KB
testcase_43 AC 1 ms
6,816 KB
testcase_44 AC 1 ms
6,816 KB
testcase_45 AC 1 ms
6,820 KB
testcase_46 AC 1 ms
6,816 KB
testcase_47 AC 1 ms
6,816 KB
testcase_48 AC 1 ms
6,820 KB
testcase_49 AC 1 ms
6,820 KB
testcase_50 AC 1 ms
6,820 KB
testcase_51 AC 1 ms
6,820 KB
testcase_52 AC 358 ms
6,816 KB
testcase_53 AC 546 ms
6,820 KB
testcase_54 AC 553 ms
6,820 KB
testcase_55 AC 553 ms
6,820 KB
testcase_56 AC 359 ms
6,820 KB
testcase_57 AC 532 ms
6,816 KB
testcase_58 AC 548 ms
6,816 KB
testcase_59 AC 542 ms
6,816 KB
testcase_60 AC 436 ms
6,816 KB
testcase_61 AC 548 ms
6,816 KB
testcase_62 AC 359 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

use std::cmp;

fn read<T: std::str::FromStr>() -> T {
    let mut s = String::new();
    std::io::stdin().read_line(&mut s).ok();
    s.trim().parse().ok().unwrap()
}

fn read_vec<T: std::str::FromStr>() -> Vec<T> {
    read::<String>().split_whitespace()
        .map(|e| e.parse().ok().unwrap()).collect()
}

fn read_vec2<T: std::str::FromStr>(n: usize) -> Vec<Vec<T>> {
    (0..n).map(|_| read_vec()).collect()
}


fn main() {
    let nm: Vec<usize> = read_vec();
    let n = nm[0];
    let m = nm[1];
    let a: Vec<Vec<usize>> = read_vec2(n);

    let mut ans: usize = 9999999;

    let mut total: usize = 0;
    for i in 0..n {
        for j in 0..n {
            total += a[i][j];
        }
    }

    for i in 0..1 << (n + 2) {
        let mut a0 = a.clone();
        let cost;
        let mut count = 0;
        for j in 0..(n + 2) {
            if (1 << j) & i == 0 && j < n {
                a0[j] = vec![0; n];
                count += 1;
            } else 
            if (1 << j) & i == 0 && j == n {
                for k in 0..n {
                    a0[k][k] = 0;
                }
                count += 1;
            } else 
            if (1 << j) & i == 0 && j > n {
                for k in 0..n {
                    a0[k][n - k - 1] = 0;
                }
                count += 1;
            }
        }
        //println!("count={}, a = {:?}", count, a0);

        if count > m {
            //println!("count > m");
            continue;
        } else {
            let mut line_sum: Vec<usize> = Vec::new();
            for j in 0..n {
                let mut sum = 0;
                for k in 0..n {
                    sum += a0[k][j];
                }
                line_sum.push(sum);
            }
            line_sum.sort_unstable();

            for j in 0..cmp::min(m - count, n) {
                line_sum[j] = 0
            }

            let mut remain = 0;
            for j in 0..n {
                remain += line_sum[j];
            }

            cost = total - remain;
            if ans > cost {
                ans = cost;
            }
            //println!("cost = {}, ans = {}", cost, ans);
        }
    }

    println!("{}", ans);

}
0