結果

問題 No.2094 Symmetry
ユーザー 259_Momone259_Momone
提出日時 2022-10-07 21:46:32
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 151 ms / 2,000 ms
コード長 992 bytes
コンパイル時間 4,254 ms
コンパイル使用メモリ 268,456 KB
実行使用メモリ 10,240 KB
最終ジャッジ日時 2024-06-12 06:52:39
合計ジャッジ時間 8,737 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 1 ms
6,940 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 132 ms
10,112 KB
testcase_10 AC 138 ms
10,112 KB
testcase_11 AC 144 ms
10,112 KB
testcase_12 AC 137 ms
10,240 KB
testcase_13 AC 126 ms
9,088 KB
testcase_14 AC 136 ms
10,112 KB
testcase_15 AC 131 ms
10,112 KB
testcase_16 AC 132 ms
10,112 KB
testcase_17 AC 123 ms
9,088 KB
testcase_18 AC 126 ms
9,216 KB
testcase_19 AC 138 ms
10,112 KB
testcase_20 AC 138 ms
9,984 KB
testcase_21 AC 151 ms
10,112 KB
testcase_22 AC 133 ms
10,112 KB
testcase_23 AC 126 ms
9,216 KB
testcase_24 AC 126 ms
9,088 KB
testcase_25 AC 138 ms
10,112 KB
testcase_26 AC 136 ms
10,112 KB
testcase_27 AC 2 ms
6,940 KB
testcase_28 AC 115 ms
10,112 KB
testcase_29 AC 1 ms
6,940 KB
testcase_30 AC 121 ms
10,112 KB
testcase_31 AC 116 ms
10,112 KB
testcase_32 AC 121 ms
10,112 KB
testcase_33 AC 2 ms
6,940 KB
testcase_34 AC 87 ms
10,240 KB
testcase_35 AC 72 ms
10,112 KB
testcase_36 AC 68 ms
9,088 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/extc++.h>

int main() {
    using namespace std;
    unsigned long N, K;
    cin >> N >> K;
    vector<unsigned long> s(4 * N * N);
    for(unsigned long i{}; i < 2 * N; ++i){
        string S;
        cin >> S;
        transform(begin(S), end(S), begin(s) + 2 * i * N, [](auto c){return c == '#';});
    }
    unsigned long S{reduce(begin(s), end(s))};
    vector<long> C(4 * N * N);
    for(auto&& c : C)cin >> c;
    vector<long> sorted_c(C);
    sort(begin(sorted_c), end(sorted_c), greater<>{});
    long ans{reduce(begin(sorted_c), begin(sorted_c) + S)};
    if(~S & 1){
        vector<long> symmetric_c(2 * N * N);
        for(unsigned long i{}; i < 2 * N; ++i)for(unsigned long j{}; j < N; ++j)symmetric_c[i * N + j] = C[2 * i * N + j] + C[2 * i * N + 2 * N - 1 - j];
        sort(begin(symmetric_c), end(symmetric_c), greater<>{});
        ans = max<long>(ans, reduce(begin(symmetric_c), begin(symmetric_c) + S / 2) + K);
    }
    cout << ans << endl;
    return 0;
}
0