結果
問題 | No.2094 Symmetry |
ユーザー | nyst |
提出日時 | 2022-10-08 10:11:50 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,141 bytes |
コンパイル時間 | 1,311 ms |
コンパイル使用メモリ | 114,848 KB |
実行使用メモリ | 7,808 KB |
最終ジャッジ日時 | 2024-06-22 09:13:50 |
合計ジャッジ時間 | 10,273 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | AC | 2 ms
6,944 KB |
testcase_04 | AC | 2 ms
6,940 KB |
testcase_05 | RE | - |
testcase_06 | AC | 2 ms
6,940 KB |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | AC | 133 ms
7,680 KB |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | AC | 132 ms
7,680 KB |
testcase_18 | AC | 136 ms
7,808 KB |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | AC | 130 ms
7,680 KB |
testcase_24 | AC | 133 ms
7,680 KB |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | AC | 2 ms
6,940 KB |
testcase_28 | RE | - |
testcase_29 | AC | 2 ms
6,940 KB |
testcase_30 | RE | - |
testcase_31 | RE | - |
testcase_32 | RE | - |
testcase_33 | RE | - |
testcase_34 | RE | - |
testcase_35 | RE | - |
testcase_36 | AC | 71 ms
7,680 KB |
ソースコード
#include <iostream> #include <vector> #include <iomanip> #include <algorithm> #include <map> #include <cmath> #include <bitset> #include <string> using namespace std; int main(){ int n; long long k; cin >> n >> k; vector<string> v(2*n); for(int i=0;i<2*n;i++) cin >> v[i]; int b_count = 0; for(int i=0;i<2*n;i++) for(int j=0;j<2*n;j++) if(v[i][j]=='#') b_count++; //asymmetry vector c(2*n,vector(2*n,0LL)); vector sc(2*n*2*n,0LL); for(int i=0;i<2*n;i++) for(int j=0;j<2*n;j++) { cin >> c[i][j]; sc[i*2*n+j] = c[i][j]; } sort(sc.begin(),sc.end(),greater<long long>()); long long ans = 0; for(int i=0;i<b_count;i++) ans+=sc[i]; if(b_count%2!=0){ cout << ans << endl; return 0; } //symmetry vector asc(2*n,0LL); for(int i=0;i<2*n;i++){ for(int j=0;j<n;j++){ asc[n*i+j] = c[i][j] + c[i][2*n-j-1]; } } sort(asc.begin(),asc.end(),greater<long long>()); long long score = 0; for(int i=0;i<b_count/2;i++){ score+= asc[i]; } score += k; cout << max(score,ans) << endl; }