結果

問題 No.2423 Merge Stones
ユーザー Nzt3Nzt3
提出日時 2023-08-16 17:35:49
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 432 ms / 4,000 ms
コード長 844 bytes
コンパイル時間 2,145 ms
コンパイル使用メモリ 207,092 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-04 01:24:24
合計ジャッジ時間 25,095 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 1 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 1 ms
5,376 KB
testcase_11 AC 428 ms
5,376 KB
testcase_12 AC 126 ms
5,376 KB
testcase_13 AC 432 ms
5,376 KB
testcase_14 AC 319 ms
5,376 KB
testcase_15 AC 193 ms
5,376 KB
testcase_16 AC 386 ms
5,376 KB
testcase_17 AC 317 ms
5,376 KB
testcase_18 AC 393 ms
5,376 KB
testcase_19 AC 129 ms
5,376 KB
testcase_20 AC 316 ms
5,376 KB
testcase_21 AC 420 ms
5,376 KB
testcase_22 AC 326 ms
5,376 KB
testcase_23 AC 190 ms
5,376 KB
testcase_24 AC 192 ms
5,376 KB
testcase_25 AC 202 ms
5,376 KB
testcase_26 AC 204 ms
5,376 KB
testcase_27 AC 354 ms
5,376 KB
testcase_28 AC 424 ms
5,376 KB
testcase_29 AC 391 ms
5,376 KB
testcase_30 AC 321 ms
5,376 KB
testcase_31 AC 324 ms
5,376 KB
testcase_32 AC 426 ms
5,376 KB
testcase_33 AC 200 ms
5,376 KB
testcase_34 AC 354 ms
5,376 KB
testcase_35 AC 320 ms
5,376 KB
testcase_36 AC 321 ms
5,376 KB
testcase_37 AC 214 ms
5,376 KB
testcase_38 AC 206 ms
5,376 KB
testcase_39 AC 424 ms
5,376 KB
testcase_40 AC 385 ms
5,376 KB
testcase_41 AC 350 ms
5,376 KB
testcase_42 AC 418 ms
5,376 KB
testcase_43 AC 131 ms
5,376 KB
testcase_44 AC 424 ms
5,376 KB
testcase_45 AC 201 ms
5,376 KB
testcase_46 AC 358 ms
5,376 KB
testcase_47 AC 198 ms
5,376 KB
testcase_48 AC 199 ms
5,376 KB
testcase_49 AC 128 ms
5,376 KB
testcase_50 AC 126 ms
5,376 KB
testcase_51 AC 391 ms
5,376 KB
testcase_52 AC 389 ms
5,376 KB
testcase_53 AC 420 ms
5,376 KB
testcase_54 AC 391 ms
5,376 KB
testcase_55 AC 423 ms
5,376 KB
testcase_56 AC 395 ms
5,376 KB
testcase_57 AC 389 ms
5,376 KB
testcase_58 AC 428 ms
5,376 KB
testcase_59 AC 420 ms
5,376 KB
testcase_60 AC 390 ms
5,376 KB
testcase_61 AC 425 ms
5,376 KB
testcase_62 AC 423 ms
5,376 KB
testcase_63 AC 428 ms
5,376 KB
testcase_64 AC 421 ms
5,376 KB
testcase_65 AC 424 ms
5,376 KB
testcase_66 AC 422 ms
5,376 KB
testcase_67 AC 420 ms
5,376 KB
testcase_68 AC 417 ms
5,376 KB
testcase_69 AC 417 ms
5,376 KB
testcase_70 AC 421 ms
5,376 KB
testcase_71 AC 422 ms
5,376 KB
testcase_72 AC 419 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
using ll=long long;

int main(){
  ios::sync_with_stdio(false);
  cin.tie(nullptr);
  int N,K;
  cin>>N>>K;
  vector A(N,0ll);
  vector C(N,0);
  for(auto &i:A)cin>>i;
  for(auto &i:C)cin>>i,--i;
  vector dp(N,vector(N+1,0ll));
  for(int i=0;i<N;i++){
    dp[i][1]=(1ll<<C[i]);
  }

  for(int i=2;i<=N;i++){
    for(int j=0;j<N;j++){
      for(int k=1;k<i;k++){
        for(int l=0;l<=K;l++){
          dp[j][i]|=(dp[j][k]&(dp[(j+k)%N][i-k]>>l));
          dp[j][i]|=((dp[j][k]>>l)&dp[(j+k)%N][i-k]);
          dp[j][i]|=(dp[j][k]&(dp[(j+k)%N][i-k]<<l));
          dp[j][i]|=((dp[j][k]<<l)&dp[(j+k)%N][i-k]);
        }
      }
    }
  }
  ll ans=0;
  for(int i=0;i<N;i++){
    ll t=0;
    for(int j=1;j<=N;j++){
      t+=A[(i+j-1)%N];
      if(dp[i][j])ans=max(ans,t);
    }
  }
  cout<<ans<<'\n';
}
0