結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 1 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 1 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 1 ms
5,248 KB
testcase_08 AC 1 ms
5,248 KB
testcase_09 AC 60 ms
5,456 KB
testcase_10 AC 59 ms
5,452 KB
testcase_11 AC 60 ms
5,448 KB
testcase_12 AC 59 ms
5,448 KB
testcase_13 AC 50 ms
5,324 KB
testcase_14 AC 59 ms
5,456 KB
testcase_15 AC 59 ms
5,328 KB
testcase_16 AC 59 ms
5,456 KB
testcase_17 AC 50 ms
5,452 KB
testcase_18 AC 51 ms
5,324 KB
testcase_19 AC 59 ms
5,452 KB
testcase_20 AC 59 ms
5,324 KB
testcase_21 AC 59 ms
5,456 KB
testcase_22 AC 60 ms
5,320 KB
testcase_23 AC 50 ms
5,456 KB
testcase_24 AC 50 ms
5,452 KB
testcase_25 AC 59 ms
5,324 KB
testcase_26 AC 60 ms
5,332 KB
testcase_27 AC 1 ms
5,248 KB
testcase_28 AC 37 ms
5,328 KB
testcase_29 AC 1 ms
5,248 KB
testcase_30 AC 38 ms
5,456 KB
testcase_31 AC 36 ms
5,456 KB
testcase_32 AC 38 ms
5,452 KB
testcase_33 AC 2 ms
5,248 KB
testcase_34 AC 30 ms
5,328 KB
testcase_35 AC 26 ms
5,452 KB
testcase_36 AC 28 ms
5,448 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