結果
問題 | No.2094 Symmetry |
ユーザー | umezo |
提出日時 | 2022-10-07 22:40:16 |
言語 | C++17(gcc12) (gcc 12.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 67 ms / 2,000 ms |
コード長 | 786 bytes |
コンパイル時間 | 2,110 ms |
コンパイル使用メモリ | 212,220 KB |
実行使用メモリ | 9,460 KB |
最終ジャッジ日時 | 2024-06-12 19:52:21 |
合計ジャッジ時間 | 5,080 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 34 |
ソースコード
#define rep(i, n) for (int i = 0; i < (int)(n); i++) #define ALL(v) v.begin(), v.end() typedef long long ll; #include <bits/stdc++.h> using namespace std; int main(){ ios::sync_with_stdio(false); std::cin.tie(nullptr); ll n,k; cin>>n>>k; vector<string> S(2*n); rep(i,2*n) cin>>S[i]; vector<vector<ll>> C(2*n,vector<ll>(2*n)); vector<ll> A; int cnt=0; rep(i,2*n) rep(j,2*n){ cin>>C[i][j]; A.push_back(C[i][j]); if(S[i][j]=='#') cnt++; } sort(ALL(A)); reverse(ALL(A)); ll ans=0; rep(i,cnt) ans+=A[i]; if(cnt%2==0){ vector<ll> B; rep(i,2*n) rep(j,n) B.push_back(C[i][j]+C[i][2*n-1-j]); sort(ALL(B)); reverse(ALL(B)); ll tmp=k; rep(i,cnt/2) tmp+=B[i]; ans=max(ans,tmp); } cout<<ans<<endl; return 0; }