結果

問題 No.2858 Make a Palindrome
ユーザー tomeruntomerun
提出日時 2024-08-25 15:27:56
言語 Crystal
(1.11.2)
結果
AC  
実行時間 577 ms / 3,000 ms
コード長 1,895 bytes
コンパイル時間 11,815 ms
コンパイル使用メモリ 296,952 KB
実行使用メモリ 36,092 KB
最終ジャッジ日時 2024-08-25 15:28:14
合計ジャッジ時間 17,035 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 577 ms
6,816 KB
testcase_01 AC 157 ms
6,816 KB
testcase_02 AC 155 ms
6,940 KB
testcase_03 AC 159 ms
6,940 KB
testcase_04 AC 155 ms
6,940 KB
testcase_05 AC 131 ms
6,944 KB
testcase_06 AC 97 ms
6,944 KB
testcase_07 AC 97 ms
6,940 KB
testcase_08 AC 102 ms
6,944 KB
testcase_09 AC 122 ms
6,940 KB
testcase_10 AC 108 ms
6,940 KB
testcase_11 AC 106 ms
6,944 KB
testcase_12 AC 113 ms
6,944 KB
testcase_13 AC 108 ms
6,940 KB
testcase_14 AC 108 ms
6,944 KB
testcase_15 AC 47 ms
6,944 KB
testcase_16 AC 47 ms
6,940 KB
testcase_17 AC 49 ms
6,940 KB
testcase_18 AC 46 ms
6,944 KB
testcase_19 AC 45 ms
6,940 KB
testcase_20 AC 46 ms
24,300 KB
testcase_21 AC 49 ms
27,572 KB
testcase_22 AC 25 ms
12,948 KB
testcase_23 AC 53 ms
24,260 KB
testcase_24 AC 40 ms
18,448 KB
testcase_25 AC 37 ms
20,220 KB
testcase_26 AC 34 ms
15,932 KB
testcase_27 AC 51 ms
28,136 KB
testcase_28 AC 41 ms
23,928 KB
testcase_29 AC 50 ms
36,092 KB
testcase_30 AC 52 ms
28,028 KB
testcase_31 AC 52 ms
28,140 KB
testcase_32 AC 52 ms
28,212 KB
testcase_33 AC 54 ms
28,184 KB
testcase_34 AC 51 ms
28,200 KB
testcase_35 AC 52 ms
28,068 KB
testcase_36 AC 51 ms
28,104 KB
testcase_37 AC 51 ms
28,072 KB
testcase_38 AC 51 ms
28,200 KB
testcase_39 AC 50 ms
28,092 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

read_line.to_i.times do
  puts solve()
end

def solve
  n, m = read_line.split.map(&.to_i)
  s = read_line.chars
  r = manacher(s)
  max = 0
  (n * 2).times do |i|
    if i % 2 == 1
      len = (r[i] + 1) // 2
      max = {max, len * 2 - 1}.max
    else
      len = r[i] // 2
      max = {max, len * 2}.max
    end
  end
  return 1 if m <= max

  r = manacher(s + s)
  max = 0
  rep = false
  (n * 4).times do |i|
    next if !(i - r[i] <= 2 * n && 2 * n <= i + r[i])
    if i % 2 == 1
      len = (r[i] + 1) // 2
      if len * 2 - 1 > max
        max = len * 2 - 1
        rem = s[..(i // 2 - len)]
        if rem == rem.reverse
          rep = true
        end
      end
    else
      len = r[i] // 2
      if len * 2 > max
        max = len * 2
        rem = s[..(i // 2 - 1 - len)]
        if rem == rem.reverse
          rep = true
        end
      end
    end
  end
  # puts [r, max, rep]
  return 2 if m <= max

  r = manacher(s + s + s)
  max3 = 0
  (n * 6).times do |i|
    if i % 2 == 1
      len = (r[i] + 1) // 2
      max3 = {max3, len * 2 - 1}.max
    else
      len = r[i] // 2
      max3 = {max3, len * 2}.max
    end
  end

  if max3 == max + n
    (m - max + n - 1) // n + 2
  else
    -1
  end
end

def manacher(s)
  str = ['$']
  s.each do |c|
    str << c << '$'
  end
  i = 0
  j = 0
  rad = Array.new(str.size, 0)
  while i < str.size
    while i - j >= 0 && i + j < str.size && str[i - j] == str[i + j]
      j += 1
    end
    rad[i] = j
    k = 1
    while k <= i && k + rad[i - k] < j
      rad[i + k] = rad[i - k]
      k += 1
    end
    i += k
    j -= k
  end
  rad

  # pos = 1.step(to: str.size - 1, by: 2).max_by { |i| rad[i] }
  # len = (rad[pos] + 1) // 2
  # odd_max = {(pos - rad[pos] + 1) // 2, len * 2 - 1}

  # pos = 0.step(to: str.size - 1, by: 2).max_by { |i| rad[i] }
  # len = rad[pos] // 2
  # even_max = {(pos - rad[pos] + 1) // 2, len * 2}
end
0