結果

問題 No.2423 Merge Stones
ユーザー 👑 emthrmemthrm
提出日時 2023-08-12 14:31:59
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,815 bytes
コンパイル時間 3,057 ms
コンパイル使用メモリ 252,700 KB
実行使用メモリ 13,640 KB
最終ジャッジ日時 2024-11-19 19:59:11
合計ジャッジ時間 83,798 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
12,832 KB
testcase_01 AC 3 ms
12,708 KB
testcase_02 AC 2 ms
12,836 KB
testcase_03 AC 2 ms
12,708 KB
testcase_04 AC 2 ms
12,832 KB
testcase_05 AC 2 ms
12,836 KB
testcase_06 AC 2 ms
12,832 KB
testcase_07 AC 2 ms
13,640 KB
testcase_08 AC 2 ms
12,836 KB
testcase_09 AC 2 ms
12,832 KB
testcase_10 AC 2 ms
12,832 KB
testcase_11 TLE -
testcase_12 AC 25 ms
13,632 KB
testcase_13 AC 25 ms
12,708 KB
testcase_14 AC 25 ms
12,832 KB
testcase_15 AC 25 ms
6,820 KB
testcase_16 AC 25 ms
6,824 KB
testcase_17 AC 25 ms
6,820 KB
testcase_18 AC 25 ms
6,820 KB
testcase_19 AC 26 ms
6,820 KB
testcase_20 AC 25 ms
6,816 KB
testcase_21 AC 25 ms
6,824 KB
testcase_22 AC 25 ms
6,820 KB
testcase_23 AC 25 ms
6,816 KB
testcase_24 AC 26 ms
6,816 KB
testcase_25 AC 26 ms
6,820 KB
testcase_26 AC 25 ms
6,820 KB
testcase_27 AC 26 ms
6,820 KB
testcase_28 AC 26 ms
6,816 KB
testcase_29 AC 26 ms
6,816 KB
testcase_30 AC 26 ms
6,816 KB
testcase_31 AC 25 ms
6,816 KB
testcase_32 AC 26 ms
6,816 KB
testcase_33 AC 25 ms
6,820 KB
testcase_34 AC 25 ms
6,816 KB
testcase_35 AC 25 ms
6,820 KB
testcase_36 AC 25 ms
6,820 KB
testcase_37 AC 26 ms
6,820 KB
testcase_38 AC 25 ms
6,820 KB
testcase_39 AC 25 ms
6,820 KB
testcase_40 AC 26 ms
6,816 KB
testcase_41 AC 26 ms
6,820 KB
testcase_42 AC 25 ms
6,816 KB
testcase_43 AC 26 ms
6,816 KB
testcase_44 AC 25 ms
6,820 KB
testcase_45 AC 25 ms
6,820 KB
testcase_46 AC 25 ms
6,820 KB
testcase_47 AC 25 ms
6,816 KB
testcase_48 AC 25 ms
6,820 KB
testcase_49 AC 25 ms
6,820 KB
testcase_50 AC 26 ms
6,816 KB
testcase_51 AC 2,519 ms
6,820 KB
testcase_52 AC 2,425 ms
6,816 KB
testcase_53 AC 2,975 ms
6,816 KB
testcase_54 AC 2,453 ms
6,816 KB
testcase_55 AC 2,947 ms
6,820 KB
testcase_56 AC 26 ms
6,820 KB
testcase_57 AC 25 ms
6,816 KB
testcase_58 AC 26 ms
6,820 KB
testcase_59 AC 25 ms
6,820 KB
testcase_60 AC 26 ms
6,816 KB
testcase_61 TLE -
testcase_62 TLE -
testcase_63 TLE -
testcase_64 TLE -
testcase_65 TLE -
testcase_66 TLE -
testcase_67 TLE -
testcase_68 TLE -
testcase_69 TLE -
testcase_70 TLE -
testcase_71 TLE -
testcase_72 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define FOR(i,m,n) for(int i=(m);i<(n);++i)
#define REP(i,n) FOR(i,0,n)
#define ALL(v) (v).begin(),(v).end()
using ll = long long;
constexpr int INF = 0x3f3f3f3f;
constexpr long long LINF = 0x3f3f3f3f3f3f3f3fLL;
constexpr double EPS = 1e-8;
constexpr int MOD = 998244353;
// constexpr int MOD = 1000000007;
constexpr int DY4[]{1, 0, -1, 0}, DX4[]{0, -1, 0, 1};
constexpr int DY8[]{1, 1, 0, -1, -1, -1, 0, 1};
constexpr int DX8[]{0, -1, -1, -1, 0, 1, 1, 1};
template <typename T, typename U>
inline bool chmax(T& a, U b) { return a < b ? (a = b, true) : false; }
template <typename T, typename U>
inline bool chmin(T& a, U b) { return a > b ? (a = b, true) : false; }
struct IOSetup {
  IOSetup() {
    std::cin.tie(nullptr);
    std::ios_base::sync_with_stdio(false);
    std::cout << fixed << setprecision(20);
  }
} iosetup;

int main() {
  constexpr int C = 50;
  int n, k; cin >> n >> k;
  vector<int> a(n), c(n);
  REP(i, n) cin >> a[i];
  REP(i, n) cin >> c[i], --c[i];
  vector dp(n * 2 - 1, vector(n * 2 - 1, 0LL));
  REP(r, n * 2 - 1) {
    dp[r][r] = 1LL << c[r % n];
    for (int l = r - 1; l >= 0 && r - l + 1 <= n; --l) {
      FOR(m, l, r) {
        if (dp[m + 1][r] == 0) continue;
        for (ll index = dp[l][m]; index > 0;) {
          const uint64_t lsb = index & -index;
          const int i = countr_zero(lsb);
          for (int j = max(i - k, 0); j <= i + k && j < C; ++j) {
            if (dp[m + 1][r] >> j & 1) dp[l][r] |= (1LL << i) | (1LL << j);
          }
          index ^= lsb;
        }
      }
    }
  }
  ll ans = 0;
  REP(i, n * 2 - 1) {
    ll magic = 0;
    for (int j = i; j - i + 1 <= n && j < n * 2 - 1; ++j) {
      magic += a[j % n];
      if (dp[i][j] > 0) chmax(ans, magic);
    }
  }
  cout << ans << '\n';
  return 0;
}
0