結果

問題 No.2094 Symmetry
ユーザー AFLeartLey0103AFLeartLey0103
提出日時 2022-10-07 22:05:09
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 158 ms / 2,000 ms
コード長 1,485 bytes
コンパイル時間 1,680 ms
コンパイル使用メモリ 173,840 KB
実行使用メモリ 17,264 KB
最終ジャッジ日時 2024-06-12 18:34:10
合計ジャッジ時間 6,622 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 1 ms
6,944 KB
testcase_04 AC 1 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 1 ms
6,944 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 144 ms
17,260 KB
testcase_10 AC 140 ms
17,140 KB
testcase_11 AC 158 ms
17,052 KB
testcase_12 AC 146 ms
17,256 KB
testcase_13 AC 134 ms
17,132 KB
testcase_14 AC 150 ms
17,244 KB
testcase_15 AC 152 ms
17,252 KB
testcase_16 AC 143 ms
17,124 KB
testcase_17 AC 134 ms
17,112 KB
testcase_18 AC 138 ms
17,064 KB
testcase_19 AC 147 ms
17,072 KB
testcase_20 AC 146 ms
17,132 KB
testcase_21 AC 147 ms
17,128 KB
testcase_22 AC 137 ms
17,132 KB
testcase_23 AC 143 ms
17,264 KB
testcase_24 AC 141 ms
17,108 KB
testcase_25 AC 140 ms
17,064 KB
testcase_26 AC 141 ms
17,156 KB
testcase_27 AC 2 ms
6,940 KB
testcase_28 AC 113 ms
17,204 KB
testcase_29 AC 2 ms
6,940 KB
testcase_30 AC 122 ms
17,132 KB
testcase_31 AC 140 ms
17,084 KB
testcase_32 AC 147 ms
17,132 KB
testcase_33 AC 2 ms
6,940 KB
testcase_34 AC 103 ms
17,124 KB
testcase_35 AC 86 ms
17,136 KB
testcase_36 AC 97 ms
17,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
#define int long long
const int maxn = 505;
int n,k;
int cnt;
bitset<maxn> vis[maxn];
int gr[maxn][maxn];
class node{
    public:
    int x,y,val;
    node(){}
    node(int _x,int _y,int _val):x(_x),y(_y),val(_val){}
    friend bool operator<(node a,node b){return a.val < b.val;}
};
priority_queue<node> pq;
priority_queue<node> fpq;
int solve1(){
    int localk = cnt;
    if(localk&1)return numeric_limits<long long>::min();
    localk>>=1;
    int fans = 0;
    for(int i = 0;i<=n;++i)vis[i] = 0;
    while(localk){
        localk -= 1;
        auto ed = fpq.top();
        fpq.pop();
        vis[ed.x][ed.y] = 1;
        fans += ed.val;
    }
    return fans+k;
}
int solve2(){
    for(int i = 0;i<=n;++i)vis[i] = 0;
    int localk = cnt;
    int fans = 0;
    while(localk){
        localk-=1;
        auto ed = pq.top();
        pq.pop();
        vis[ed.x][ed.y] = 1;
        fans += ed.val;
    }
    return fans;
}
signed main(){
    cin >> n >> k;
    n *= 2;
    char ch;
    for(int i = 0;i<n;++i)
        for(int j = 0;j<n;++j){
            cin >> ch;
            if(ch == '#')cnt++;
    }
    for(int i = 1;i<=n;++i){
        for(int j = 1;j<=n;++j){
            cin >> gr[i][j];
            pq.push(node(i,j,gr[i][j]));
        }
    }
    for(int i = 1;i<=n;++i){
        for(int j = 1;j<=n>>1;++j){
            fpq.push(node(i,j,gr[i][j] + gr[i][n+1-j]));
        }
    }
    cout << max(solve1(),solve2());
    return 0;
}
0