結果

問題 No.2094 Symmetry
ユーザー Nzt3Nzt3
提出日時 2022-12-23 00:00:42
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 71 ms / 2,000 ms
コード長 866 bytes
コンパイル時間 2,451 ms
コンパイル使用メモリ 209,048 KB
実行使用メモリ 5,580 KB
最終ジャッジ日時 2024-04-29 04:03:48
合計ジャッジ時間 6,458 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 66 ms
5,456 KB
testcase_10 AC 71 ms
5,448 KB
testcase_11 AC 71 ms
5,376 KB
testcase_12 AC 69 ms
5,448 KB
testcase_13 AC 57 ms
5,376 KB
testcase_14 AC 70 ms
5,452 KB
testcase_15 AC 67 ms
5,452 KB
testcase_16 AC 70 ms
5,456 KB
testcase_17 AC 59 ms
5,376 KB
testcase_18 AC 60 ms
5,580 KB
testcase_19 AC 69 ms
5,376 KB
testcase_20 AC 69 ms
5,376 KB
testcase_21 AC 65 ms
5,456 KB
testcase_22 AC 68 ms
5,452 KB
testcase_23 AC 56 ms
5,452 KB
testcase_24 AC 57 ms
5,448 KB
testcase_25 AC 70 ms
5,376 KB
testcase_26 AC 67 ms
5,376 KB
testcase_27 AC 2 ms
5,376 KB
testcase_28 AC 42 ms
5,376 KB
testcase_29 AC 2 ms
5,376 KB
testcase_30 AC 43 ms
5,452 KB
testcase_31 AC 40 ms
5,456 KB
testcase_32 AC 44 ms
5,452 KB
testcase_33 AC 2 ms
5,376 KB
testcase_34 AC 35 ms
5,376 KB
testcase_35 AC 31 ms
5,452 KB
testcase_36 AC 32 ms
5,456 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
int main(){
  ios::sync_with_stdio(false);
  cin.tie(nullptr);
  long long N,K;
  cin>>N>>K;
  int cnt=0;
  for(int i=0;i<N*2;i++){
    for(int j=0;j<N*2;j++){
      char c;
      cin>>c;
      cnt+=c=='#';
    }
  }
  vector<vector<int>>C(N*2,vector<int>(N*2));
  for(int i=0;i<N*2;i++)for(int j=0;j<N*2;j++)cin>>C[i][j];
  vector<int>t;
  long long ans=0;
  for(int i=0;i<N*2;i++){
    for(int j=0;j<N*2;j++)t.push_back(C[i][j]);
  }
  sort(t.begin(),t.end(),greater<int>());
  for(int i=0;i<cnt;i++){
    ans+=t[i];
  }
  if(cnt%2==0){
    t.clear();
    long long ans2=K;
    for(int i=0;i<N*2;i++){
      for(int j=0;j<N;j++){
        t.push_back(C[i][j]+C[i][N*2-j-1]);
      }
    }
    sort(t.begin(),t.end(),greater<int>());
    for(int i=0;i<cnt/2;i++)ans2+=t[i];
    ans=max(ans,ans2);
  }
  cout<<ans<<'\n';
}
0