結果

問題 No.2094 Symmetry
ユーザー otoshigootoshigo
提出日時 2022-10-07 21:34:48
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 68 ms / 2,000 ms
コード長 831 bytes
コンパイル時間 2,393 ms
コンパイル使用メモリ 209,396 KB
実行使用メモリ 9,232 KB
最終ジャッジ日時 2024-06-12 06:25:04
合計ジャッジ時間 5,057 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 1 ms
6,944 KB
testcase_09 AC 68 ms
9,228 KB
testcase_10 AC 67 ms
9,224 KB
testcase_11 AC 66 ms
9,104 KB
testcase_12 AC 65 ms
9,100 KB
testcase_13 AC 53 ms
7,184 KB
testcase_14 AC 65 ms
9,224 KB
testcase_15 AC 65 ms
9,096 KB
testcase_16 AC 65 ms
9,100 KB
testcase_17 AC 53 ms
7,308 KB
testcase_18 AC 52 ms
7,180 KB
testcase_19 AC 63 ms
9,172 KB
testcase_20 AC 66 ms
9,228 KB
testcase_21 AC 65 ms
9,100 KB
testcase_22 AC 64 ms
9,100 KB
testcase_23 AC 55 ms
7,180 KB
testcase_24 AC 56 ms
7,180 KB
testcase_25 AC 63 ms
9,100 KB
testcase_26 AC 64 ms
9,108 KB
testcase_27 AC 2 ms
6,948 KB
testcase_28 AC 39 ms
9,232 KB
testcase_29 AC 2 ms
6,944 KB
testcase_30 AC 43 ms
9,108 KB
testcase_31 AC 40 ms
9,108 KB
testcase_32 AC 41 ms
9,232 KB
testcase_33 AC 1 ms
6,940 KB
testcase_34 AC 34 ms
9,192 KB
testcase_35 AC 30 ms
9,104 KB
testcase_36 AC 29 ms
7,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
using ll = long long;
#define rep(i,n) for (int i = 0; i < n; i++)
#define rrep(i,n) for (int i = (n) - 1; i >= 0; i--)

int n;
ll k,C[510][510];
int main(){
    ios::sync_with_stdio(false);
    std::cin.tie(nullptr);
    cin>>n>>k;
    int cnt=0;
    rep(i,2*n){
        string s;
        cin>>s;
        rep(j,2*n)if(s[j]=='#')cnt++;
    }
    vector<ll>v;
    rep(i,2*n)rep(j,2*n){
        cin>>C[i][j];
        v.push_back(C[i][j]);
    }
    sort(v.rbegin(),v.rend());
    ll ans=0;
    rep(i,cnt)ans+=v[i];
    if(cnt%2==0){
        vector<ll>w;
        rep(i,2*n){
            rep(j,n){
                w.push_back(C[i][j]+C[i][2*n-1-j]);
            }
        }
        sort(w.rbegin(),w.rend());
        rep(i,cnt/2)k+=w[i];
        ans=max(ans,k);
    }
    cout<<ans<<"\n";
}
0