結果

問題 No.1029 JJOOII 3
ユーザー queeequeee
提出日時 2020-04-17 22:21:20
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 764 bytes
コンパイル時間 636 ms
コンパイル使用メモリ 78,044 KB
実行使用メモリ 10,496 KB
最終ジャッジ日時 2024-10-03 13:49:31
合計ジャッジ時間 20,447 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
10,496 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 177 ms
5,248 KB
testcase_04 AC 555 ms
5,376 KB
testcase_05 TLE -
testcase_06 AC 1,817 ms
6,820 KB
testcase_07 TLE -
testcase_08 TLE -
testcase_09 AC 1,965 ms
6,820 KB
testcase_10 TLE -
testcase_11 TLE -
testcase_12 AC 1,412 ms
6,820 KB
testcase_13 TLE -
testcase_14 TLE -
testcase_15 AC 1,704 ms
6,820 KB
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 AC 2 ms
6,816 KB
testcase_20 AC 2 ms
6,820 KB
testcase_21 AC 3 ms
6,820 KB
testcase_22 AC 2 ms
6,816 KB
testcase_23 AC 2 ms
6,816 KB
testcase_24 AC 3 ms
6,820 KB
testcase_25 AC 2 ms
6,816 KB
testcase_26 AC 3 ms
6,820 KB
testcase_27 AC 4 ms
6,816 KB
testcase_28 AC 2 ms
6,816 KB
testcase_29 AC 3 ms
6,820 KB
testcase_30 AC 3 ms
6,816 KB
testcase_31 AC 3 ms
6,820 KB
testcase_32 TLE -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <cmath>
#include <queue>
#include <cassert>
using namespace std; typedef long long ll; const ll INF=1e18;

int main() {
  int n,k; cin>>n>>k;
  string t;
  for(int i=0;i<k;i++) t+="J";
  for(int i=0;i<k;i++) t+="O";
  for(int i=0;i<k;i++) t+="I";

  string s[n]; ll c[n];
  for(int i=0;i<n;i++) {
    cin>>s[i]>>c[i];
  }

  vector<ll> v(3*k+1);
  for(int i=0;i<=3*k;i++) v[i]=INF; v[0]=0;
  for(int i=0;i<3*k;i++) {
    for(int j=0;j<n;j++) {
      int u=i;
      for(char ch:s[j]) {
        if (ch == t[u]) u++;
        if (u == 3*k) break;
      }
      v[u] = min(v[u], v[i]+c[j]);
    }
  }
  /*
  for(int i=0;i<=3*k;i++) {
    cout<<v[i]<<" ";
  } cout<<endl;*/
  if (v[3*k] == INF) cout<<"-1"<<endl;
  else cout<<v[3*k]<<endl;
}
0