結果

問題 No.2094 Symmetry
ユーザー kakel-sankakel-san
提出日時 2022-10-07 21:50:23
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 243 ms / 2,000 ms
コード長 1,431 bytes
コンパイル時間 3,667 ms
コンパイル使用メモリ 114,448 KB
実行使用メモリ 35,840 KB
最終ジャッジ日時 2024-06-12 07:01:57
合計ジャッジ時間 9,278 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
19,200 KB
testcase_01 AC 31 ms
18,688 KB
testcase_02 AC 32 ms
19,072 KB
testcase_03 AC 31 ms
19,072 KB
testcase_04 AC 30 ms
19,200 KB
testcase_05 AC 31 ms
18,688 KB
testcase_06 AC 30 ms
19,200 KB
testcase_07 AC 31 ms
18,944 KB
testcase_08 AC 31 ms
18,816 KB
testcase_09 AC 239 ms
34,432 KB
testcase_10 AC 238 ms
34,432 KB
testcase_11 AC 239 ms
34,432 KB
testcase_12 AC 243 ms
34,304 KB
testcase_13 AC 242 ms
34,560 KB
testcase_14 AC 243 ms
34,560 KB
testcase_15 AC 241 ms
34,432 KB
testcase_16 AC 239 ms
34,432 KB
testcase_17 AC 237 ms
34,432 KB
testcase_18 AC 241 ms
34,432 KB
testcase_19 AC 239 ms
34,688 KB
testcase_20 AC 241 ms
34,304 KB
testcase_21 AC 242 ms
34,560 KB
testcase_22 AC 237 ms
34,432 KB
testcase_23 AC 239 ms
34,560 KB
testcase_24 AC 240 ms
34,432 KB
testcase_25 AC 242 ms
34,176 KB
testcase_26 AC 237 ms
34,432 KB
testcase_27 AC 32 ms
18,944 KB
testcase_28 AC 196 ms
34,944 KB
testcase_29 AC 31 ms
19,328 KB
testcase_30 AC 199 ms
35,840 KB
testcase_31 AC 197 ms
34,432 KB
testcase_32 AC 201 ms
35,328 KB
testcase_33 AC 31 ms
18,688 KB
testcase_34 AC 169 ms
26,112 KB
testcase_35 AC 157 ms
26,112 KB
testcase_36 AC 159 ms
26,112 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 static System.Console;
using System.Linq;
using System.Collections.Generic;

class Program
{
    static int NN => int.Parse(ReadLine());
    static long[] NList => ReadLine().Split().Select(long.Parse).ToArray();
    static string[] SList(int n) => Enumerable.Repeat(0, n).Select(_ => ReadLine()).ToArray();
    static void Main()
    {
        Solve();
    }
    static void Solve()
    {
        var c = NList;
        var (n, k) = ((int)c[0], c[1]);
        n <<= 1;
        var b = 0;
        for (var i = 0; i < n; ++i)
        {
            b += ReadLine().Count(s => s == '#');
        }
        var clist = new long[n * n];
        var slist = new long[n * n / 2];
        for (var i = 0; i < n; ++i)
        {
            c = NList;
            for (var j = 0; j < n; ++j)
            {
                clist[i * n + j] = c[j];
                if (j < n / 2) slist[i * n / 2 + j] += c[j];
                else slist[i * n / 2 + n - j - 1] += c[j];
            }
        }
        Array.Sort(clist, (l, r) => r.CompareTo(l));
        Array.Sort(slist, (l, r) => r.CompareTo(l));
        var res = 0L;
        for (var i = 0; i < b; ++i) res += clist[i];
        if (b % 2 == 0)
        {
            var sub = k;
            for (var i = 0; i < b / 2; ++i) sub += slist[i];
            res = Math.Max(res, sub);
        }
        WriteLine(res);
    }
}
0