結果

問題 No.2423 Merge Stones
ユーザー SSRSSSRS
提出日時 2023-08-12 13:59:06
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 383 ms / 4,000 ms
コード長 1,285 bytes
コンパイル時間 1,674 ms
コンパイル使用メモリ 175,780 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-11-19 16:57:14
合計ジャッジ時間 20,294 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 2 ms
6,820 KB
testcase_04 AC 2 ms
6,820 KB
testcase_05 AC 2 ms
6,820 KB
testcase_06 AC 2 ms
6,816 KB
testcase_07 AC 2 ms
6,816 KB
testcase_08 AC 2 ms
6,820 KB
testcase_09 AC 2 ms
6,820 KB
testcase_10 AC 2 ms
6,820 KB
testcase_11 AC 380 ms
6,816 KB
testcase_12 AC 55 ms
6,820 KB
testcase_13 AC 378 ms
6,820 KB
testcase_14 AC 192 ms
6,816 KB
testcase_15 AC 128 ms
6,820 KB
testcase_16 AC 344 ms
6,820 KB
testcase_17 AC 192 ms
6,820 KB
testcase_18 AC 343 ms
6,820 KB
testcase_19 AC 55 ms
6,820 KB
testcase_20 AC 191 ms
6,820 KB
testcase_21 AC 377 ms
6,820 KB
testcase_22 AC 192 ms
6,820 KB
testcase_23 AC 128 ms
6,820 KB
testcase_24 AC 127 ms
6,816 KB
testcase_25 AC 129 ms
6,820 KB
testcase_26 AC 127 ms
6,816 KB
testcase_27 AC 261 ms
6,820 KB
testcase_28 AC 379 ms
6,816 KB
testcase_29 AC 344 ms
6,816 KB
testcase_30 AC 192 ms
6,816 KB
testcase_31 AC 194 ms
6,816 KB
testcase_32 AC 383 ms
6,820 KB
testcase_33 AC 128 ms
6,816 KB
testcase_34 AC 261 ms
6,820 KB
testcase_35 AC 192 ms
6,816 KB
testcase_36 AC 192 ms
6,816 KB
testcase_37 AC 127 ms
6,816 KB
testcase_38 AC 128 ms
6,820 KB
testcase_39 AC 379 ms
6,820 KB
testcase_40 AC 344 ms
6,816 KB
testcase_41 AC 255 ms
6,820 KB
testcase_42 AC 377 ms
6,816 KB
testcase_43 AC 55 ms
6,820 KB
testcase_44 AC 379 ms
6,820 KB
testcase_45 AC 127 ms
6,816 KB
testcase_46 AC 258 ms
6,816 KB
testcase_47 AC 127 ms
6,820 KB
testcase_48 AC 127 ms
6,820 KB
testcase_49 AC 55 ms
6,816 KB
testcase_50 AC 55 ms
6,820 KB
testcase_51 AC 343 ms
6,816 KB
testcase_52 AC 344 ms
6,820 KB
testcase_53 AC 378 ms
6,816 KB
testcase_54 AC 343 ms
6,816 KB
testcase_55 AC 379 ms
6,816 KB
testcase_56 AC 342 ms
6,816 KB
testcase_57 AC 343 ms
6,820 KB
testcase_58 AC 377 ms
6,816 KB
testcase_59 AC 378 ms
6,820 KB
testcase_60 AC 341 ms
6,816 KB
testcase_61 AC 378 ms
6,816 KB
testcase_62 AC 378 ms
6,816 KB
testcase_63 AC 377 ms
6,816 KB
testcase_64 AC 378 ms
6,820 KB
testcase_65 AC 379 ms
6,816 KB
testcase_66 AC 379 ms
6,816 KB
testcase_67 AC 378 ms
6,820 KB
testcase_68 AC 377 ms
6,816 KB
testcase_69 AC 378 ms
6,816 KB
testcase_70 AC 379 ms
6,816 KB
testcase_71 AC 378 ms
6,816 KB
testcase_72 AC 379 ms
6,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
int main(){
  int N, K;
  cin >> N >> K;
  vector<int> A(N);
  for (int i = 0; i < N; i++){
    cin >> A[i];
  }
  vector<int> C(N);
  for (int i = 0; i < N; i++){
    cin >> C[i];
  }
  vector<long long> S(N + 1);
  S[0] = 0;
  for (int i = 0; i < N; i++){
    S[i + 1] = S[i] + A[i];
  }
  auto sum = [&](int L, int R){
    if (L < R){
      return S[R] - S[L];
    } else {
      return (S[N] - S[L]) + S[R];
    }
  };
  auto match = [&](long long a, long long b){
    long long ans = a & b;
    for (int i = 1; i <= K; i++){
      ans |= a & (b << i);
      ans |= a & (b >> i);
      ans |= (a << i) & b;
      ans |= (a >> i) & b;
    }
    return ans;
  };
  vector<vector<long long>> dp(N, vector<long long>(N, 0));
  for (int i = 0; i < N - 1; i++){
    dp[i][i + 1] = (long long) 1 << C[i];
  }
  dp[N - 1][0] = (long long) 1 << C[N - 1];
  for (int i = 2; i <= N; i++){
    for (int j = 0; j < N; j++){
      for (int k = j + 1; k < j + i; k++){
        dp[j][(j + i) % N] |= match(dp[j][k % N], dp[k % N][(j + i) % N]);
      }
    }
  }
  long long ans = 0;
  for (int i = 0; i < N; i++){
    for (int j = 0; j < N; j++){
      if (dp[i][j] != 0){
        ans = max(ans, sum(i, j));
      }
    }
  }
  cout << ans << endl;
}
0