結果

問題 No.2858 Make a Palindrome
ユーザー tomeruntomerun
提出日時 2024-08-25 15:19:31
言語 Crystal
(1.11.2)
結果
WA  
実行時間 -
コード長 1,660 bytes
コンパイル時間 11,583 ms
コンパイル使用メモリ 297,404 KB
実行使用メモリ 19,852 KB
最終ジャッジ日時 2024-08-25 15:19:49
合計ジャッジ時間 15,660 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 500 ms
6,812 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 93 ms
6,940 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 25 ms
18,980 KB
testcase_21 AC 26 ms
18,668 KB
testcase_22 AC 14 ms
9,856 KB
testcase_23 AC 25 ms
18,720 KB
testcase_24 WA -
testcase_25 AC 20 ms
11,896 KB
testcase_26 AC 20 ms
12,328 KB
testcase_27 AC 29 ms
19,636 KB
testcase_28 WA -
testcase_29 AC 26 ms
19,132 KB
testcase_30 AC 28 ms
19,736 KB
testcase_31 AC 29 ms
19,816 KB
testcase_32 AC 30 ms
19,628 KB
testcase_33 AC 27 ms
19,700 KB
testcase_34 AC 29 ms
17,936 KB
testcase_35 AC 27 ms
19,760 KB
testcase_36 AC 29 ms
19,684 KB
testcase_37 AC 28 ms
19,704 KB
testcase_38 AC 28 ms
19,852 KB
testcase_39 AC 28 ms
19,484 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
  if rep
    (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