結果

問題 No.2423 Merge Stones
ユーザー Nzt3Nzt3
提出日時 2023-08-15 18:57:56
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 884 bytes
コンパイル時間 2,188 ms
コンパイル使用メモリ 207,868 KB
実行使用メモリ 47,232 KB
最終ジャッジ日時 2024-11-24 03:17:08
合計ジャッジ時間 291,984 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
10,624 KB
testcase_01 AC 5 ms
13,644 KB
testcase_02 AC 4 ms
13,640 KB
testcase_03 AC 3 ms
28,928 KB
testcase_04 AC 2 ms
13,636 KB
testcase_05 AC 2 ms
10,624 KB
testcase_06 AC 3 ms
13,636 KB
testcase_07 AC 2 ms
10,624 KB
testcase_08 AC 2 ms
13,640 KB
testcase_09 AC 2 ms
28,800 KB
testcase_10 AC 3 ms
10,624 KB
testcase_11 TLE -
testcase_12 AC 2,767 ms
30,500 KB
testcase_13 TLE -
testcase_14 TLE -
testcase_15 AC 3,823 ms
28,928 KB
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 AC 2,761 ms
46,976 KB
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 AC 3,837 ms
47,104 KB
testcase_24 AC 3,845 ms
47,104 KB
testcase_25 AC 3,833 ms
28,928 KB
testcase_26 WA -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
testcase_33 AC 3,838 ms
47,232 KB
testcase_34 TLE -
testcase_35 TLE -
testcase_36 TLE -
testcase_37 WA -
testcase_38 AC 3,847 ms
46,976 KB
testcase_39 TLE -
testcase_40 TLE -
testcase_41 TLE -
testcase_42 TLE -
testcase_43 AC 2,800 ms
30,496 KB
testcase_44 TLE -
testcase_45 AC 3,852 ms
28,928 KB
testcase_46 TLE -
testcase_47 AC 3,879 ms
29,056 KB
testcase_48 TLE -
testcase_49 AC 2,792 ms
28,928 KB
testcase_50 AC 2,791 ms
47,232 KB
testcase_51 TLE -
testcase_52 TLE -
testcase_53 TLE -
testcase_54 TLE -
testcase_55 TLE -
testcase_56 TLE -
testcase_57 TLE -
testcase_58 TLE -
testcase_59 TLE -
testcase_60 TLE -
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;
using ll=long long;
// TLE
int main(){
  ios::sync_with_stdio(false);
  cin.tie(nullptr);
  int N,K;
  cin>>N>>K;
  vector A(N,0),C(N,0);
  for(int &i:A)cin>>i;
  for(int &i:C)cin>>i,--i;
  vector dp(N,vector(N,vector(50,-(int)1e9)));
  for(int i=0;i<N;i++){
    dp[i][1][C[i]]=A[i];
  }
  for(int w=2;w<N;w++){
    for(int i=0;i<N;i++){
      for(int j=1;j<w;j++){
        for(int c=0;c<50;c++){
          for(int k=max(0,c-K);k<=min(49,c+K);k++){
            if(dp[i][j][c]>0&&dp[(i+j)%N][w-j][k]>0){
              dp[i][w][c]=dp[i][j][c]+dp[(i+j)%N][w-j][k];
              dp[i][w][k]=dp[i][j][c]+dp[(i+j)%N][w-j][k];
            }
          }
        }
      }
    }
  }
  int ans=0;
  for(int i=0;i<N;i++){
    for(int j=0;j<N;j++){
      for(int k=0;k<50;k++){
        ans=max(ans,dp[i][j][k]);
      }
    }
  }
  cout<<ans<<'\n';
}
0