結果

問題 No.1029 JJOOII 3
ユーザー ChanyuhChanyuh
提出日時 2020-04-25 22:56:44
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 3,561 bytes
コンパイル時間 1,018 ms
コンパイル使用メモリ 107,364 KB
実行使用メモリ 200,704 KB
最終ジャッジ日時 2024-11-08 00:42:00
合計ジャッジ時間 28,498 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
10,624 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 1 ms
5,248 KB
testcase_03 AC 62 ms
12,928 KB
testcase_04 WA -
testcase_05 AC 1,063 ms
171,648 KB
testcase_06 AC 1,272 ms
122,368 KB
testcase_07 AC 921 ms
151,808 KB
testcase_08 AC 1,209 ms
160,896 KB
testcase_09 AC 877 ms
140,928 KB
testcase_10 WA -
testcase_11 AC 1,232 ms
183,424 KB
testcase_12 AC 868 ms
100,992 KB
testcase_13 AC 915 ms
184,960 KB
testcase_14 AC 1,093 ms
188,032 KB
testcase_15 AC 118 ms
126,464 KB
testcase_16 AC 136 ms
146,304 KB
testcase_17 AC 842 ms
171,520 KB
testcase_18 WA -
testcase_19 AC 2 ms
5,248 KB
testcase_20 AC 925 ms
5,248 KB
testcase_21 AC 930 ms
5,248 KB
testcase_22 AC 1,114 ms
5,248 KB
testcase_23 AC 682 ms
5,248 KB
testcase_24 AC 913 ms
5,248 KB
testcase_25 AC 1,090 ms
5,248 KB
testcase_26 AC 1,408 ms
5,248 KB
testcase_27 AC 1,954 ms
5,248 KB
testcase_28 AC 599 ms
5,248 KB
testcase_29 AC 378 ms
5,248 KB
testcase_30 WA -
testcase_31 AC 546 ms
5,248 KB
testcase_32 TLE -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<string>
#include<cstdio>
#include<vector>
#include<cmath>
#include<algorithm>
#include<functional>
#include<iomanip>
#include<queue>
#include<ciso646>
#include<random>
#include<map>
#include<set>
#include<complex>
#include<bitset>
#include<stack>
#include<unordered_map>
#include<utility>
#include<tuple>
using namespace std;
typedef long long ll;
typedef unsigned int ui;
const ll mod = 1000000007;
const ll INF = (ll)1000000007 * 1000000007;
typedef pair<int, int> P;
#define stop char nyaa;cin>>nyaa;
#define rep(i,n) for(int i=0;i<n;i++)
#define per(i,n) for(int i=n-1;i>=0;i--)
#define Rep(i,sta,n) for(int i=sta;i<n;i++)
#define Per(i,sta,n) for(int i=n-1;i>=sta;i--)
#define rep1(i,n) for(int i=1;i<=n;i++)
#define per1(i,n) for(int i=n;i>=1;i--)
#define Rep1(i,sta,n) for(int i=sta;i<=n;i++)
typedef long double ld;
const ld eps = 1e-8;
const ld pi = acos(-1.0);
typedef pair<ll, ll> LP;
int dx[4]={1,-1,0,0};
int dy[4]={0,0,1,-1};

int n,k;
ll c[85];
vector<int> s[85];
int cnt[85][3];
ll mono[3][100010];
ll dp[3][85][100010];

void solve(){
  cin >> n >> k;
  rep(i,n){
    string s_;
    cin >> s_ >> c[i];
    s[i].resize(s_.size());
    rep(j,s_.size()){
      if(s_[j]=='J'){
        s[i][j]=0;
        cnt[i][0]+=1;
      }
      if(s_[j]=='O'){
        s[i][j]=1;
        cnt[i][1]+=1;
      }
      if(s_[j]=='I'){
        s[i][j]=2;
        cnt[i][2]+=1;
      }
    }
  }
  // rep(i,n){
  //   rep(p,3){
  //     cout << cnt[i][p] << " ";
  //   }
  //   cout << "" << endl;
  //}
  rep(p,3){
    rep(i,n+1){
      rep(j,k+1){
        dp[p][i][j]=INF;
      }
    }
  }
  rep(p,3){
    dp[p][0][0]=0;
    rep(i,n){
      rep(j,k+1){
        if(j-cnt[i][p]>=0)dp[p][i+1][j]=min(dp[p][i][j],dp[p][i+1][j-cnt[i][p]]+c[i]);
        else if(j==k) dp[p][i+1][j]=min(dp[p][i][j],dp[p][i+1][0]+c[i]);
        else dp[p][i+1][j]=dp[p][i][j];
      }
    }
  }
  // rep(p,3){
  //   rep(i,n+1){
  //     rep(j,k+1){
  //       cout << p << " " << i << " " << j << " " << dp[p][i][j] << endl;
  //     }
  //   }
  // }
  rep(p,3){
    rep(j,k+2){
      mono[p][j]=INF;
    }
  }
  rep(p,3){
    per(j,k+1){
      mono[p][j]=min(mono[p][j+1],dp[p][n][j]);
    }
  }
  // rep(p,3){
  //   rep(j,k+1){
  //     cout << p << " " << j << " " << mono[p][j] << endl;
  //   }
  // }
  ll ans=INF;
  rep(i1,n){
    int J_num=0;
    rep(t1,s[i1].size()){
      if(s[i1][t1]!=0) continue;
      J_num+=1;
      int O_num1=0;
      Per(t2,t1+1,s[i1].size()){
        if(s[i1][t2]!=1) continue;
        O_num1+=1;
        rep(i2,n){
          int O_num2=0;
          rep(t3,s[i2].size()){
            if(s[i2][t3]!=1) continue;
            O_num2+=1;
            int I_num=0;
            Per(t4,t3+1,s[i2].size()){
              if(s[i2][t4]!=2) continue;
              I_num+=1;
              ans=min(ans,c[i1]+c[i2]+mono[0][max(0,k-J_num)]+mono[1][max(0,k-O_num1-O_num2)]+mono[2][max(0,k-I_num)]);
            }
          }
        }
      }
    }
  }
  rep(i,n){
    int J_num=0;
    rep(t1,s[i].size()){
      if(s[i][t1]!=0) continue;
      J_num+=1;
      int I_num=0;
      Per(t2,t1+1,s[i].size()){
        if(s[i][t2]!=2) continue;
        I_num+=1;
        int O_num=0;
        Rep(t3,t1+1,t2){
          if(s[i][t3]==1) O_num+=1;
        }
        if(O_num>=k) ans=min(ans,c[i]+mono[0][max(0,k-J_num)]+mono[2][max(0,k-I_num)]);
      }
    }
  }
  if(ans<INF)cout << ans << endl;
  else cout << -1 << endl;
}

int main(){
    ios::sync_with_stdio(false);
    cin.tie(0);
    cout << fixed << setprecision(50);
    solve();
}
0