結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 474 ms
6,812 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 91 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 AC 23 ms
6,944 KB
testcase_16 AC 24 ms
6,940 KB
testcase_17 AC 24 ms
6,940 KB
testcase_18 AC 25 ms
6,940 KB
testcase_19 AC 24 ms
6,944 KB
testcase_20 AC 26 ms
18,584 KB
testcase_21 AC 26 ms
18,812 KB
testcase_22 AC 16 ms
10,240 KB
testcase_23 AC 27 ms
18,944 KB
testcase_24 AC 22 ms
14,244 KB
testcase_25 AC 19 ms
11,608 KB
testcase_26 AC 19 ms
12,324 KB
testcase_27 AC 32 ms
19,640 KB
testcase_28 AC 21 ms
11,392 KB
testcase_29 AC 26 ms
19,248 KB
testcase_30 AC 26 ms
19,696 KB
testcase_31 AC 27 ms
19,780 KB
testcase_32 AC 28 ms
19,636 KB
testcase_33 AC 28 ms
19,808 KB
testcase_34 AC 27 ms
19,748 KB
testcase_35 AC 28 ms
19,740 KB
testcase_36 AC 29 ms
19,672 KB
testcase_37 AC 28 ms
19,516 KB
testcase_38 AC 27 ms
19,832 KB
testcase_39 AC 27 ms
19,508 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 - 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