結果
問題 | No.2094 Symmetry |
ユーザー | kyushu1996 |
提出日時 | 2022-10-08 19:03:51 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,521 bytes |
コンパイル時間 | 749 ms |
コンパイル使用メモリ | 88,204 KB |
実行使用メモリ | 10,352 KB |
最終ジャッジ日時 | 2024-06-22 21:49:11 |
合計ジャッジ時間 | 3,775 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,944 KB |
testcase_02 | WA | - |
testcase_03 | AC | 1 ms
6,940 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | AC | 2 ms
6,940 KB |
testcase_28 | AC | 48 ms
10,220 KB |
testcase_29 | AC | 1 ms
6,940 KB |
testcase_30 | AC | 47 ms
10,220 KB |
testcase_31 | AC | 47 ms
10,220 KB |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | AC | 43 ms
10,092 KB |
ソースコード
#include <iostream> #include <cstdio> #include <algorithm> #include <string> #include <vector> #include <queue> #include <set> #include <numeric> #define ll long long using namespace std; // link : https://yukicoder.me/problems/no/2094 // category : grpha, symmetry int main() { ll n,k,cnt=0; cin>>n>>k; for(int i=0;i<2*n;i++){ string s; cin>>s; for(int j=0;j<2*n;j++){ if(s[j]=='#') cnt++; } } ll C[n*2][n*2]={}; vector<ll> Cline; for(int i=0;i<n*2;i++){ for(int j=0;j<n*2;j++){ scanf("%d",&C[i][j]); Cline.push_back(C[i][j]); } } ll P[n*2][n]={}; vector<ll> Pline; for(int i=0;i<n*2;i++){ for(int j=0;j<n;j++){ P[i][j]=C[i][j]+C[i][2*n-1-j]; Pline.push_back(P[i][j]); } } sort(Cline.begin(),Cline.end()); reverse(Cline.begin(),Cline.end()); sort(Pline.begin(),Pline.end()); reverse(Pline.begin(),Pline.end()); // ll ans; // vector<ll> csum(Cline.size()), psum(Pline.size()); // partial_sum(Cline.begin(),Cline.end(),csum.begin()); // partial_sum(Pline.begin(),Pline.end(),psum.begin()); ll csum=0, psum=0, ans; for(int i=0;i<cnt;i++){ csum+=Cline[i]; } for(int i=0;i<cnt/2;i++){ psum+=Pline[i]; } // ans = (cnt%2==0) ? max(csum[cnt-1],psum[cnt/2-1]+k) : csum[cnt-1]; // cout<< ans; ans = (cnt%2==0) ? max(csum, psum+k) : csum; cout<< ans <<endl; return 0; }