結果
問題 | No.2094 Symmetry |
ユーザー | hassybirobiro |
提出日時 | 2022-10-07 22:59:02 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,771 bytes |
コンパイル時間 | 2,757 ms |
コンパイル使用メモリ | 217,096 KB |
実行使用メモリ | 9,496 KB |
最終ジャッジ日時 | 2024-06-12 20:37:11 |
合計ジャッジ時間 | 5,401 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,944 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | AC | 2 ms
6,940 KB |
testcase_04 | AC | 2 ms
6,940 KB |
testcase_05 | AC | 2 ms
6,940 KB |
testcase_06 | AC | 2 ms
6,944 KB |
testcase_07 | AC | 2 ms
6,940 KB |
testcase_08 | AC | 1 ms
6,940 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | AC | 60 ms
9,088 KB |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | AC | 60 ms
8,880 KB |
testcase_18 | AC | 60 ms
9,364 KB |
testcase_19 | AC | 61 ms
8,372 KB |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | AC | 58 ms
9,156 KB |
testcase_23 | AC | 59 ms
8,632 KB |
testcase_24 | AC | 59 ms
8,504 KB |
testcase_25 | WA | - |
testcase_26 | AC | 60 ms
9,000 KB |
testcase_27 | AC | 2 ms
6,944 KB |
testcase_28 | AC | 35 ms
8,584 KB |
testcase_29 | AC | 2 ms
6,940 KB |
testcase_30 | AC | 37 ms
8,456 KB |
testcase_31 | AC | 34 ms
8,584 KB |
testcase_32 | AC | 36 ms
8,460 KB |
testcase_33 | AC | 1 ms
6,940 KB |
testcase_34 | AC | 44 ms
8,380 KB |
testcase_35 | AC | 39 ms
8,508 KB |
testcase_36 | AC | 24 ms
8,452 KB |
ソースコード
#include <bits/stdc++.h> #include <sys/time.h> using namespace std; using ll = long long; using ull = unsigned long long; using ld = long double; using vi = vector<int>; using vvi = vector<vi>; using vvvi = vector<vvi>; using vl = vector<long>; using vvl = vector<vl>; using vll = vector<ll>; using vvll = vector<vll>; using vb = vector<bool>; using vvb = vector<vb>; using pii = pair<int, int>; using pll = pair<ll, ll>; using vpii = vector<pii>; using vpll = vector<pll>; using vstr = vector<string>; constexpr ll INF_LL=1LL<<62; constexpr int INF_I=1LL<<30; #define rep(i,n) for(int i=0; i<((int)(n)); i++) #define reps(i,n) for(int i=1; i<=((int)(n)); i++) #define vector_cin(x) for(auto &n : (x)) cin >> n #define ALL(x) (x).begin(), (x).end() #define YesNo(x) ((x) ? "Yes": "No") #define pb emplace_back #define to_lower(S) transform(ALL((S)), (S).begin(), ::tolower) #define to_upper(S) transform(ALL((S)), (S).begin(), ::toupper) template <typename T> bool chmax(T &a, const T& b) {if (a < b){a = b;return true;}return false;} template <typename T> bool chmin(T &a, const T& b) {if (a > b){a = b;return true;}return false;} ll ceilint(ll x, ll y) {return (x + y - 1) / y;} void Main(); int main() {std::cin.tie(nullptr);std::ios_base::sync_with_stdio(false);std::cout << std::fixed << std::setprecision(15);Main();return 0;} //-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+- void Main() { ll N, K; cin >> N >> K; vstr S(N * 2); vector_cin(S); vvll C(2 * N, vll(2 * N)); priority_queue<ll, vll, greater<ll>> black; priority_queue<ll> white; priority_queue<ll> sum; ll ans = 0, size_b = 0, size_w = 0; rep(i, 2 * N) rep(j, 2 * N) cin >> C[i][j]; rep(i, 2 * N) { rep(j, 2 * N) { if (S[i][j] == '#') { black.push(C[i][j]); ans += C[i][j]; size_b++; } else { white.push(C[i][j]); size_w++; } if (j <= N - 1) { sum.push(C[i][j] + C[i][2 * N - j - 1]); } } } while (!white.empty() && !black.empty()) { ll w = white.top(), b = black.top(); white.pop(); black.pop(); white.push(b); black.push(w); if (w - b <= 0) break; else chmax(ans, ans + w - b); } ll num = -INF_LL; if (size_w == size_b && size_w % 2 == 0) { num = 0; rep(i, size_b / 2) num += sum.top(), sum.pop(); num += K; } if (size_w == 0 || size_b == 0) { num = 0; if (size_w == 0) { rep(i, 2 * N) rep(j, 2 * N) num += C[i][j]; } num += K; } cout << max(ans, num) << endl; }