結果

問題 No.1029 JJOOII 3
ユーザー 👑 hos.lyrichos.lyric
提出日時 2020-04-17 21:51:47
言語 D
(dmd 2.105.2)
結果
AC  
実行時間 160 ms / 2,000 ms
コード長 3,748 bytes
コンパイル時間 1,024 ms
コンパイル使用メモリ 108,256 KB
実行使用メモリ 6,712 KB
最終ジャッジ日時 2023-09-04 07:23:00
合計ジャッジ時間 4,810 ms
ジャッジサーバーID
(参考情報)
judge15 / judge13
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,376 KB
testcase_01 AC 1 ms
4,380 KB
testcase_02 AC 1 ms
4,376 KB
testcase_03 AC 9 ms
4,376 KB
testcase_04 AC 29 ms
4,812 KB
testcase_05 AC 134 ms
5,648 KB
testcase_06 AC 94 ms
5,120 KB
testcase_07 AC 119 ms
5,864 KB
testcase_08 AC 125 ms
5,356 KB
testcase_09 AC 112 ms
5,072 KB
testcase_10 AC 118 ms
6,712 KB
testcase_11 AC 139 ms
5,600 KB
testcase_12 AC 77 ms
5,660 KB
testcase_13 AC 145 ms
5,920 KB
testcase_14 AC 145 ms
5,696 KB
testcase_15 AC 97 ms
6,396 KB
testcase_16 AC 108 ms
5,908 KB
testcase_17 AC 132 ms
5,604 KB
testcase_18 AC 131 ms
6,176 KB
testcase_19 AC 2 ms
4,376 KB
testcase_20 AC 3 ms
4,376 KB
testcase_21 AC 3 ms
4,380 KB
testcase_22 AC 3 ms
4,380 KB
testcase_23 AC 3 ms
4,376 KB
testcase_24 AC 3 ms
4,380 KB
testcase_25 AC 4 ms
4,376 KB
testcase_26 AC 3 ms
4,376 KB
testcase_27 AC 4 ms
4,376 KB
testcase_28 AC 3 ms
4,380 KB
testcase_29 AC 3 ms
4,380 KB
testcase_30 AC 4 ms
4,380 KB
testcase_31 AC 3 ms
4,380 KB
testcase_32 AC 152 ms
5,856 KB
testcase_33 AC 154 ms
6,168 KB
testcase_34 AC 152 ms
5,868 KB
testcase_35 AC 154 ms
5,912 KB
testcase_36 AC 160 ms
5,908 KB
testcase_37 AC 2 ms
4,376 KB
testcase_38 AC 1 ms
4,380 KB
testcase_39 AC 1 ms
4,380 KB
testcase_40 AC 1 ms
4,380 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import std.conv, std.functional, std.range, std.stdio, std.string;
import std.algorithm, std.array, std.bigint, std.bitmanip, std.complex, std.container, std.math, std.mathspecial, std.numeric, std.regex, std.typecons;
import core.bitop;

class EOFException : Throwable { this() { super("EOF"); } }
string[] tokens;
string readToken() { for (; tokens.empty; ) { if (stdin.eof) { throw new EOFException; } tokens = readln.split; } auto token = tokens.front; tokens.popFront; return token; }
int readInt() { return readToken.to!int; }
long readLong() { return readToken.to!long; }
real readReal() { return readToken.to!real; }

bool chmin(T)(ref T t, in T f) { if (t > f) { t = f; return true; } else { return false; } }
bool chmax(T)(ref T t, in T f) { if (t < f) { t = f; return true; } else { return false; } }

int binarySearch(alias pred, T)(in T[] as) { int lo = -1, hi = cast(int)(as.length); for (; lo + 1 < hi; ) { const mid = (lo + hi) >> 1; (unaryFun!pred(as[mid]) ? hi : lo) = mid; } return hi; }
int lowerBound(T)(in T[] as, T val) { return as.binarySearch!(a => (a >= val)); }
int upperBound(T)(in T[] as, T val) { return as.binarySearch!(a => (a > val)); }


enum INF = 10L^^18;

void main() {
  try {
    for (; ; ) {
      const N = readInt();
      const K = readInt();
      auto S = new string[N];
      auto C = new long[N];
      foreach (i; 0 .. N) {
        S[i] = readToken();
        C[i] = readLong();
      }
      
      auto L = new int[N];
      auto counts = new int[][][](3, N);
      foreach (i; 0 .. N) {
        L[i] = cast(int)(S[i].length);
        foreach (h; 0 .. 3) {
          counts[h][i] = new int[L[i] + 1];
          foreach (pos; 0 .. L[i] + 1) {
            counts[h][i][pos] = cast(int)(S[i][0 .. pos].count("JOI"[h]));
          }
        }
      }
      
      
      auto J = new int[][](3, N);
      auto JO = new int[][][](2, N);
      auto JOI = new int[][](N);
      foreach (h; 0 .. 3) {
        foreach (i; 0 .. N) {
          J[h][i] = counts[h][i][L[i]];
        }
      }
      foreach (h; 0 .. 2) {
        foreach (i; 0 .. N) {
          JO[h][i] = new int[L[i] + 1];
          JO[h][i][] = -1;
          foreach (pos; 0 .. L[i] + 1) {
            chmax(JO[h][i][counts[h][i][pos]], counts[h + 1][i][L[i]] - counts[h + 1][i][pos]);
          }
        }
      }
      {
        foreach (i; 0 .. N) {
          JOI[i] = new int[L[i] + 1];
          JOI[i][] = -1;
          foreach (pos0; 0 .. L[i] + 1) foreach (pos1; pos0 .. L[i] + 1) {
            if (counts[1][i][pos1] - counts[1][i][pos0] >= K) {
              chmax(JOI[i][counts[0][i][pos0]], counts[2][i][L[i]] - counts[2][i][pos1]);
            }
          }
        }
      }
      
      auto dp = new long[][](3 + 1, K + 1);
      foreach (h; 0 .. 3 + 1) {
        dp[h][] = INF;
      }
      dp[0][0] = 0;
      foreach (h; 0 .. 3) {
        foreach (x; 0 .. K) {
          {
            foreach (i; 0 .. N) {
              const xx = min(x + J[h][i], K);
              chmin(dp[h][xx], dp[h][x] + C[i]);
            }
          }
          if (h < 2) {
            foreach (i; 0 .. N) {
              if (K - x <= L[i] && JO[h][i][K - x] >= 0) {
                const xx = min(JO[h][i][K - x], K);
                chmin(dp[h + 1][xx], dp[h][x] + C[i]);
              }
            }
          }
          if (h < 1) {
            foreach (i; 0 .. N) {
              if (K - x <= L[i] && JOI[i][K - x] >= 0) {
                const xx = min(JOI[i][K - x], K);
                chmin(dp[h + 2][xx], dp[h][x] + C[i]);
              }
            }
          }
        }
        chmin(dp[h + 1][0], dp[h][K]);
      }
      const ans = dp[3][0];
      writeln((ans >= INF) ? -1 : ans);
    }
  } catch (EOFException e) {
  }
}
0