結果

問題 No.1345 Beautiful BINGO
ユーザー keymoonkeymoon
提出日時 2021-01-17 00:57:05
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 2,419 bytes
コンパイル時間 1,023 ms
コンパイル使用メモリ 115,104 KB
実行使用メモリ 33,552 KB
最終ジャッジ日時 2024-11-28 16:25:01
合計ジャッジ時間 13,397 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
27,324 KB
testcase_01 AC 37 ms
25,400 KB
testcase_02 AC 38 ms
25,268 KB
testcase_03 AC 38 ms
27,492 KB
testcase_04 AC 37 ms
25,584 KB
testcase_05 AC 39 ms
27,184 KB
testcase_06 AC 38 ms
27,492 KB
testcase_07 AC 38 ms
25,392 KB
testcase_08 AC 38 ms
25,452 KB
testcase_09 AC 37 ms
25,584 KB
testcase_10 AC 38 ms
27,236 KB
testcase_11 AC 37 ms
23,476 KB
testcase_12 AC 37 ms
25,396 KB
testcase_13 AC 40 ms
27,572 KB
testcase_14 AC 37 ms
25,452 KB
testcase_15 AC 38 ms
25,392 KB
testcase_16 AC 37 ms
27,448 KB
testcase_17 AC 38 ms
25,664 KB
testcase_18 AC 37 ms
25,324 KB
testcase_19 AC 37 ms
25,664 KB
testcase_20 AC 37 ms
27,332 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 50 ms
29,524 KB
testcase_25 AC 54 ms
31,432 KB
testcase_26 AC 206 ms
31,636 KB
testcase_27 AC 683 ms
31,512 KB
testcase_28 AC 40 ms
27,576 KB
testcase_29 AC 205 ms
29,452 KB
testcase_30 AC 40 ms
27,700 KB
testcase_31 AC 42 ms
27,312 KB
testcase_32 AC 41 ms
25,324 KB
testcase_33 AC 685 ms
31,508 KB
testcase_34 AC 38 ms
25,392 KB
testcase_35 AC 37 ms
25,456 KB
testcase_36 AC 349 ms
29,464 KB
testcase_37 AC 40 ms
25,392 KB
testcase_38 AC 206 ms
29,580 KB
testcase_39 AC 690 ms
31,512 KB
testcase_40 AC 414 ms
29,460 KB
testcase_41 AC 209 ms
31,496 KB
testcase_42 AC 37 ms
25,576 KB
testcase_43 AC 38 ms
25,396 KB
testcase_44 AC 38 ms
27,496 KB
testcase_45 AC 38 ms
25,448 KB
testcase_46 AC 38 ms
25,324 KB
testcase_47 AC 38 ms
23,480 KB
testcase_48 WA -
testcase_49 AC 38 ms
25,452 KB
testcase_50 WA -
testcase_51 WA -
testcase_52 AC 309 ms
31,524 KB
testcase_53 AC 742 ms
31,760 KB
testcase_54 AC 157 ms
29,220 KB
testcase_55 AC 395 ms
29,588 KB
testcase_56 AC 310 ms
31,508 KB
testcase_57 AC 630 ms
29,340 KB
testcase_58 AC 824 ms
29,460 KB
testcase_59 AC 706 ms
33,552 KB
testcase_60 AC 380 ms
31,900 KB
testcase_61 AC 548 ms
31,628 KB
testcase_62 AC 241 ms
31,628 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;
using System.Collections;
using System.Collections.Generic;
using System.Diagnostics;
using System.IO;
using System.Linq;
using System.Numerics;
using System.Text;
using System.Text.RegularExpressions;
using System.Threading.Tasks;
using static System.Math;
public static class P
{
    public static void Main()
    {
        var nm = Console.ReadLine().Split().Select(int.Parse).ToArray();
        var n = nm[0];
        var m = nm[1];
        var bingo = Enumerable.Repeat(0, n).Select(_ => Console.ReadLine().Split().Select(int.Parse).ToArray()).ToArray();

        static int Solve(int[][] bingo, int norma)
        {
            int res = int.MaxValue;
            int n = bingo.Length;
            for (int b = 0; b < (1 << n); b++)
            {
                int[] cols = new int[n];
                int popcnt = 0;
                for (int i = 0; i < n; i++) popcnt += b >> i & 1;
                if (popcnt + n < norma) continue;
                int sum = 0;
                for (int i = 0; i < n; i++)
                {
                    for (int j = 0; j < n; j++)
                    {
                        if ((b >> i & 1) != 1) cols[j] += bingo[i][j];
                        else sum += bingo[i][j];
                    }
                }
                sum += cols.OrderBy(x => x).Take(norma - popcnt).Sum();
                res = Min(res, sum);
            }
            return res;
        }
        var res = Solve(bingo, m);
        {
            var newBingo1 = bingo.Select(x => x.ToArray()).ToArray();
            var newBingo2 = bingo.Select(x => x.ToArray()).ToArray();
            var newBingo3 = bingo.Select(x => x.ToArray()).ToArray();
            int sum1 = 0;
            int sum2 = 0;
            int sum3 = 0;
            for (int i = 0; i < n; i++)
            {
                sum1 += newBingo1[i][i];
                sum2 += newBingo2[i][n - i - 1];
                newBingo1[i][i] = 0;
                newBingo2[i][n - i - 1] = 0;
                sum3 += newBingo3[i][i];
                newBingo3[i][i] = 0;
                sum3 += newBingo3[i][n - i - 1];
                newBingo3[i][n - i - 1] = 0;
            }
            res = Min(res, Solve(newBingo1, m - 1) + sum1);
            res = Min(res, Solve(newBingo2, m - 1) + sum2);
            if (1 < m) res = Min(res, Solve(newBingo3, m - 2) + sum3);
        }
        Console.WriteLine(res);
    }
}
0