結果

問題 No.291 黒い文字列
ユーザー beetbeet
提出日時 2018-12-14 19:09:06
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 411 ms / 2,000 ms
コード長 1,557 bytes
コンパイル時間 2,340 ms
コンパイル使用メモリ 217,080 KB
実行使用メモリ 38,180 KB
最終ジャッジ日時 2023-10-25 10:12:02
合計ジャッジ時間 5,432 ms
ジャッジサーバーID
(参考情報)
judge15 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,348 KB
testcase_01 AC 2 ms
4,348 KB
testcase_02 AC 2 ms
4,348 KB
testcase_03 AC 2 ms
4,348 KB
testcase_04 AC 2 ms
4,348 KB
testcase_05 AC 2 ms
4,348 KB
testcase_06 AC 2 ms
4,348 KB
testcase_07 AC 2 ms
4,348 KB
testcase_08 AC 2 ms
4,348 KB
testcase_09 AC 2 ms
4,348 KB
testcase_10 AC 2 ms
4,348 KB
testcase_11 AC 5 ms
4,348 KB
testcase_12 AC 4 ms
4,348 KB
testcase_13 AC 2 ms
4,348 KB
testcase_14 AC 2 ms
4,348 KB
testcase_15 AC 2 ms
4,348 KB
testcase_16 AC 102 ms
17,496 KB
testcase_17 AC 147 ms
20,880 KB
testcase_18 AC 116 ms
19,088 KB
testcase_19 AC 263 ms
31,020 KB
testcase_20 AC 288 ms
32,644 KB
testcase_21 AC 35 ms
10,212 KB
testcase_22 AC 278 ms
33,368 KB
testcase_23 AC 411 ms
38,180 KB
testcase_24 AC 210 ms
29,372 KB
testcase_25 AC 108 ms
23,480 KB
testcase_26 AC 69 ms
16,008 KB
testcase_27 AC 2 ms
4,348 KB
testcase_28 AC 8 ms
5,016 KB
testcase_29 AC 39 ms
11,412 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
using Int = long long;
template<typename T1,typename T2> inline void chmin(T1 &a,T2 b){if(a>b) a=b;}
template<typename T1,typename T2> inline void chmax(T1 &a,T2 b){if(a<b) a=b;}

//INSERT ABOVE HERE
signed main(){
  string s;
  cin>>s;
  int n=s.size();
  auto T=[](int a,int b,int c,int d){
           return (((a*22+b)*22)+c)*22+d;
         };
  auto calc=[](int x){
              int d=x%22;x/=22;
              int c=x%22;x/=22;
              int b=x%22;x/=22;
              int a=x%22;x/=22;
              return make_tuple(a,b,c,d);
            };
  vector<map<int, int> > dp(n+1);
  dp[0][T(0,0,0,0)]=0;
  for(int i=0;i<n;i++){
    for(auto p:dp[i]){
      int res=p.second;
      int a,b,c,d;
      tie(a,b,c,d)=calc(p.first);
      chmin(c,max(0,20-d));
      chmin(b,max(0,20-(c+d)));
      chmin(a,max(0,20-(b+c+d)));
      
      chmax(dp[i+1][T(a,b,c,d)],res);
      
      if(s[i]=='K'||s[i]=='?'){
        chmax(dp[i+1][T(min(a+1,20),b,c,d)],res);
      }      
      if(s[i]=='U'||s[i]=='?'){
        if(a) chmax(dp[i+1][T(a-1,min(b+1,20),c,d)],res);
      }     
      if(s[i]=='R'||s[i]=='?'){
        if(b) chmax(dp[i+1][T(a,b-1,min(c+1,20),d)],res);
      }      
      if(s[i]=='O'||s[i]=='?'){
        if(c) chmax(dp[i+1][T(a,b,c-1,min(d+1,20))],res);
      }
      if(s[i]=='I'||s[i]=='?'){
        if(d) chmax(dp[i+1][T(a,b,c,d-1)],res+1);
      }
    }    
  }
  
  int ans=0;
  for(int i=0;i<=n;i++)
    for(auto p:dp[i])
      chmax(ans,p.second);
  
  cout<<ans<<endl;
  return 0;
}
0