結果

問題 No.238 Mr. K's Another Gift
ユーザー ともきともき
提出日時 2015-07-06 04:32:53
言語 Scala(Beta)
(3.4.0)
結果
TLE  
実行時間 -
コード長 3,253 bytes
コンパイル時間 10,118 ms
コンパイル使用メモリ 262,576 KB
実行使用メモリ 84,192 KB
最終ジャッジ日時 2023-09-11 11:39:35
合計ジャッジ時間 58,249 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,035 ms
67,924 KB
testcase_01 AC 1,046 ms
63,724 KB
testcase_02 AC 1,026 ms
63,696 KB
testcase_03 AC 1,096 ms
63,932 KB
testcase_04 AC 1,254 ms
63,896 KB
testcase_05 AC 1,847 ms
73,516 KB
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 AC 1,026 ms
63,764 KB
testcase_11 AC 1,023 ms
63,592 KB
testcase_12 AC 1,054 ms
63,580 KB
testcase_13 AC 1,137 ms
63,656 KB
testcase_14 AC 1,600 ms
68,384 KB
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 AC 1,031 ms
63,348 KB
testcase_21 AC 1,037 ms
63,972 KB
testcase_22 AC 1,036 ms
63,640 KB
testcase_23 AC 1,083 ms
63,760 KB
testcase_24 AC 1,252 ms
64,096 KB
testcase_25 AC 1,279 ms
63,920 KB
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import scala.io.StdIn.readLine
import scala.collection.mutable.PriorityQueue
import scala.annotation.tailrec
import scala.util.control.Breaks

object Lib {
  object String {
    // ex. b = 26 (if alphabet), mod = 1000000007
    class RollingHash[T](val b : Long,val mod : Long,val conv : T => Long) {
      final def hash(n : T) : Long = conv(n)%mod
      // n = (c0,c1,c2,c3,...cn)
      //  => (c0*b^n + ... + cn*b^0) mod 'mod'
      final def hash(n : Traversable[T]) =
        n.foldLeft(0l)((c,t) => (conv(t)+b*c)%mod)
      final def scan(n : Traversable[T]) =
        n.scanLeft(0l)((c,t) => (conv(t)+b*c)%mod)
      final def apply(n : T) = hash(n)
      final def apply(n : Traversable[T]) = hash(n)
    }
    object RollingHash {
      def apply[T](b : Long, mod : Long, conv : T => Long) = new RollingHash(b,mod,conv)
    }
  }
}

object Main {
  // def insert(s : String, c : Char, n : Int) : String = {
  //   val (head,tail) = s.splitAt(n)
  //   head + c + tail
  // }
  // def solve(s : String) : Option[String] = {
  //   val n = s.length
  //   val b = new Breaks
  //   def check(s : String,c : Char) : Boolean = {
  //     val n = s.length
  //     (0 until s.length).forall((i) => {
  //                                 val j = n - i - 1
  //                                 s(i) == c || s(j) == c || s(i) == s(j)
  //                               })
  //   }
  //   if(check(s,'?')){
  //     Some(s.take(n/2) + s(n/2) + s.drop(n/2))
  //   }else{
  //     var ans : Option[String] = None
  //     b.breakable {
  //       for(i <- 0 until n){
  //         val j = n - i - 1
  //         if(s(i) != s(j)){
  //           val checking = Vector((s.take(i) + "?" + s.drop(i)),
  //                                 (s.take(j+1) + "?" + s.drop(j+1)))
  //           checking.foreach((i) => if(check(i,'?')){
  //                              val r = i.indexOf('?')
  //                              ans = Some(i.updated(r,i(n-r)))
  //                            })
  //           b.break
  //         }
  //       }
  //     }
  //     ans
  //   }
  // }
  // rsexr
  def solve(s : String) : Option[String] = {
    val r = Lib.String.RollingHash(103,1000000007,(c : Char) => c-'a'+1)
    val a = r.scan(s).toVector
    val b = r.scan(s.reverse).toVector
    val n = s.length
    val p = (0 to n).scanLeft(1l)((i,j) => (i*r.b % r.mod))
    def insert(hashlist : Vector[Long], c : Char, i : Int) : Long = {
      val left  = (hashlist(i) * p(n-i))     % r.mod
      val right = (hashlist(n) - left + r.mod) % r.mod
      val ins   = (r(c) * p(n-i))              % r.mod
      val here = (r.b * left + ins + right) % r.mod
      here
    }

    var ret : Option[String] = None
    for(i <- 0 to n;
        c <- 'a' to 'z'){
      if(insert(a,c,i) == insert(b,c,n-i)){
        ret = Some(s.take(i) + c + s.drop(i))
      }
    }
    ret
     // (for(i <- 0 to n;
     //     c <- 'a' to 'z') yield (i,c))
     //  .filter({case (i,c) => insert(a,c,i) == insert(b,c,n-i)})
     //  .headOption
     //  .map({case (i,c) => s.take(i) + c + s.drop(i)})
  }

  def main(args : Array[String]) : Unit = {
    val s = readLine
    val ret = solve(s) match {
        case Some(j) => j
        case None    => "NA"
      }
    println(ret)
  }
}
0