結果

問題 No.1345 Beautiful BINGO
ユーザー kakel-sankakel-san
提出日時 2024-08-13 23:50:47
言語 C#
(.NET 8.0.203)
結果
TLE  
実行時間 -
コード長 2,314 bytes
コンパイル時間 13,887 ms
コンパイル使用メモリ 169,172 KB
実行使用メモリ 213,480 KB
最終ジャッジ日時 2024-08-13 23:51:44
合計ジャッジ時間 53,692 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 65 ms
30,848 KB
testcase_01 AC 65 ms
30,720 KB
testcase_02 AC 65 ms
30,720 KB
testcase_03 AC 63 ms
31,104 KB
testcase_04 AC 64 ms
30,720 KB
testcase_05 AC 64 ms
30,848 KB
testcase_06 AC 63 ms
30,720 KB
testcase_07 AC 71 ms
33,024 KB
testcase_08 AC 65 ms
30,720 KB
testcase_09 AC 63 ms
30,720 KB
testcase_10 AC 64 ms
30,716 KB
testcase_11 AC 64 ms
31,104 KB
testcase_12 AC 63 ms
30,720 KB
testcase_13 AC 74 ms
33,024 KB
testcase_14 AC 65 ms
30,976 KB
testcase_15 AC 65 ms
30,720 KB
testcase_16 AC 65 ms
30,976 KB
testcase_17 AC 65 ms
30,708 KB
testcase_18 AC 65 ms
30,848 KB
testcase_19 AC 64 ms
30,720 KB
testcase_20 AC 64 ms
30,592 KB
testcase_21 AC 63 ms
30,720 KB
testcase_22 AC 176 ms
50,688 KB
testcase_23 AC 1,804 ms
55,808 KB
testcase_24 AC 873 ms
55,680 KB
testcase_25 AC 114 ms
41,344 KB
testcase_26 AC 475 ms
55,932 KB
testcase_27 AC 1,948 ms
56,064 KB
testcase_28 AC 108 ms
40,832 KB
testcase_29 AC 457 ms
56,064 KB
testcase_30 AC 236 ms
55,680 KB
testcase_31 AC 156 ms
51,032 KB
testcase_32 AC 76 ms
33,920 KB
testcase_33 AC 1,840 ms
56,192 KB
testcase_34 AC 86 ms
35,828 KB
testcase_35 AC 86 ms
35,840 KB
testcase_36 AC 1,826 ms
55,808 KB
testcase_37 AC 89 ms
35,840 KB
testcase_38 AC 483 ms
56,064 KB
testcase_39 AC 1,878 ms
56,064 KB
testcase_40 AC 952 ms
55,680 KB
testcase_41 AC 890 ms
55,680 KB
testcase_42 AC 64 ms
30,592 KB
testcase_43 AC 65 ms
30,720 KB
testcase_44 AC 65 ms
30,976 KB
testcase_45 AC 64 ms
31,104 KB
testcase_46 AC 64 ms
30,720 KB
testcase_47 AC 64 ms
30,588 KB
testcase_48 AC 63 ms
30,592 KB
testcase_49 AC 63 ms
30,720 KB
testcase_50 AC 62 ms
30,720 KB
testcase_51 AC 62 ms
30,848 KB
testcase_52 AC 1,795 ms
55,808 KB
testcase_53 AC 1,875 ms
56,064 KB
testcase_54 AC 1,821 ms
55,936 KB
testcase_55 AC 1,844 ms
55,936 KB
testcase_56 AC 1,808 ms
56,192 KB
testcase_57 AC 1,856 ms
56,064 KB
testcase_58 TLE -
testcase_59 AC 1,857 ms
56,280 KB
testcase_60 AC 1,832 ms
56,180 KB
testcase_61 AC 1,922 ms
55,936 KB
testcase_62 AC 1,802 ms
213,480 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (124 ms)。
MSBuild のバージョン 17.9.6+a4ecab324 (.NET)
  main -> /home/judge/data/code/bin/Release/net8.0/main.dll
  main -> /home/judge/data/code/bin/Release/net8.0/publish/

ソースコード

diff #

using System;
using static System.Console;
using System.Linq;
using System.Collections.Generic;

class Program
{
    static int NN => int.Parse(ReadLine());
    static int[] NList => ReadLine().Split().Select(int.Parse).ToArray();
    static int[][] NArr(long n) => Enumerable.Repeat(0, (int)n).Select(_ => NList).ToArray();
    public static void Main()
    {
        Solve();
    }
    static void Solve()
    {
        var c = NList;
        var (n, m) = (c[0], c[1]);
        var map = NArr(n);
        var ans = int.MaxValue;
        var bitmax = 1 << n;
        for (var b = 0; b < bitmax; ++b)
        {
            for (var s = 0; s < 4; ++s)
            {
                var h = new int[n][];
                for (var i = 0; i < n; ++i) h[i] = (int[]) map[i].Clone();
                var sub = 0;
                var lines = 0;
                for (var j = 0; j < n; ++j)
                {
                    if (((b >> j) & 1) != 0)
                    {
                        for (var i = 0; i < n; ++i)
                        {
                            sub += h[i][j];
                            h[i][j] = 0;
                        }
                        ++lines;
                    }
                }
                if (s % 2 == 1)
                {
                    for (var i = 0; i < n; ++i) if (((b >> i) & 1) == 0)
                    {
                        sub += h[i][i];
                        h[i][i] = 0;
                    }
                    ++lines;
                }
                if (s / 2 == 1)
                {
                    for (var i = 0; i < n; ++i) if (((b >> i) & 1) == 0)
                    {
                        sub += h[n - i - 1][i];
                        h[n - i - 1][i] = 0;
                    }
                    ++lines;
                }
                var hsum = h.Select(hi => hi.Sum()).ToList();
                hsum.Sort();
                // WriteLine($"b={b}, s={s}, lines={lines}, hsum={string.Join(" ", hsum)}, sub={sub}, ans={sub + hsum.Take(Math.Min(n, Math.Max(0, m - lines))).Sum()}");
                if (m - lines <= n) ans = Math.Min(ans, sub + hsum.Take(Math.Max(0, m - lines)).Sum());
            }
        }
        WriteLine(ans);
    }
}
0