結果
問題 | No.2094 Symmetry |
ユーザー | shkiiii_ |
提出日時 | 2022-10-07 22:29:15 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,329 bytes |
コンパイル時間 | 1,713 ms |
コンパイル使用メモリ | 175,288 KB |
実行使用メモリ | 16,692 KB |
最終ジャッジ日時 | 2024-06-12 19:29:16 |
合計ジャッジ時間 | 7,091 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
13,760 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 2 ms
6,940 KB |
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 | 96 ms
6,940 KB |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | TLE | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
ソースコード
#include<bits/stdc++.h> // #include<atcoder/all> // #include<boost/multiprecision/cpp_int.hpp> using namespace std; // using namespace atcoder; // using bint = boost::multiprecision::cpp_int; using ll = long long; using ull = unsigned long long; using P = pair<int,int>; #define rep(i,n) for(ll i = 0;i < (ll)n;i++) #define ALL(x) (x).begin(),(x).end() #define MOD 1000000007 // #define MOD 998244353 int main(){ int 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)); rep(i,2*n)rep(j,2*n)cin >> c[i][j]; int cnt = 0; rep(i,2*n)rep(j,2*n)cnt += (s[i][j] == '#'); ll res = -(1ll << 50); { vector<ll> dp(cnt+1,-(1ll << 50)); dp[0] = 0; rep(i,2*n){ vector<ll> DP(cnt+1,-(1ll << 50)); rep(j,n)rep(k,cnt+1){ if(k+2 <= cnt)DP[k+2] = max(DP[k+2],dp[k] + c[i][j] + c[i][2*n-j-1]); DP[k] = max(DP[k],dp[k]); } swap(dp,DP); } res = dp[cnt] + K; } { vector<ll> dp(cnt+1,-(1ll << 50)); dp[0] = 0; rep(i,2*n){ vector<ll> DP(cnt+1,-(1ll << 50)); rep(j,2*n)rep(k,cnt+1){ if(k+1 <= cnt)DP[k+1] = max(DP[k+1],dp[k] + c[i][j]); DP[k] = max(DP[k],dp[k]); } swap(dp,DP); } res = max(res,dp[cnt]); } cout << res << "\n"; return 0; }