結果

問題 No.962 LCPs
ユーザー yakamotoyakamoto
提出日時 2020-01-11 14:25:02
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 636 ms / 2,000 ms
コード長 1,625 bytes
コンパイル時間 13,663 ms
コンパイル使用メモリ 452,300 KB
実行使用メモリ 100,740 KB
最終ジャッジ日時 2024-05-03 18:48:53
合計ジャッジ時間 46,093 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 314 ms
60,456 KB
testcase_01 AC 309 ms
60,532 KB
testcase_02 AC 325 ms
60,860 KB
testcase_03 AC 334 ms
60,736 KB
testcase_04 AC 344 ms
60,684 KB
testcase_05 AC 309 ms
60,696 KB
testcase_06 AC 303 ms
60,536 KB
testcase_07 AC 329 ms
60,616 KB
testcase_08 AC 326 ms
60,784 KB
testcase_09 AC 326 ms
60,772 KB
testcase_10 AC 324 ms
60,788 KB
testcase_11 AC 311 ms
60,636 KB
testcase_12 AC 297 ms
60,704 KB
testcase_13 AC 300 ms
60,628 KB
testcase_14 AC 301 ms
60,644 KB
testcase_15 AC 294 ms
60,512 KB
testcase_16 AC 301 ms
60,636 KB
testcase_17 AC 572 ms
95,816 KB
testcase_18 AC 523 ms
76,788 KB
testcase_19 AC 536 ms
76,536 KB
testcase_20 AC 485 ms
70,384 KB
testcase_21 AC 485 ms
70,092 KB
testcase_22 AC 485 ms
67,436 KB
testcase_23 AC 476 ms
67,436 KB
testcase_24 AC 471 ms
65,092 KB
testcase_25 AC 474 ms
65,424 KB
testcase_26 AC 476 ms
64,268 KB
testcase_27 AC 511 ms
68,792 KB
testcase_28 AC 499 ms
64,740 KB
testcase_29 AC 496 ms
63,252 KB
testcase_30 AC 536 ms
67,680 KB
testcase_31 AC 570 ms
70,736 KB
testcase_32 AC 483 ms
62,804 KB
testcase_33 AC 554 ms
76,540 KB
testcase_34 AC 505 ms
64,668 KB
testcase_35 AC 490 ms
64,476 KB
testcase_36 AC 499 ms
66,048 KB
testcase_37 AC 547 ms
62,480 KB
testcase_38 AC 527 ms
62,704 KB
testcase_39 AC 509 ms
62,872 KB
testcase_40 AC 513 ms
62,228 KB
testcase_41 AC 512 ms
62,844 KB
testcase_42 AC 516 ms
62,100 KB
testcase_43 AC 520 ms
63,128 KB
testcase_44 AC 520 ms
62,324 KB
testcase_45 AC 522 ms
62,280 KB
testcase_46 AC 516 ms
63,672 KB
testcase_47 AC 444 ms
61,084 KB
testcase_48 AC 405 ms
59,944 KB
testcase_49 AC 432 ms
61,120 KB
testcase_50 AC 432 ms
61,284 KB
testcase_51 AC 388 ms
58,176 KB
testcase_52 AC 389 ms
58,028 KB
testcase_53 AC 443 ms
60,056 KB
testcase_54 AC 441 ms
61,208 KB
testcase_55 AC 428 ms
59,524 KB
testcase_56 AC 440 ms
60,068 KB
testcase_57 AC 461 ms
62,152 KB
testcase_58 AC 508 ms
62,112 KB
testcase_59 AC 462 ms
66,236 KB
testcase_60 AC 459 ms
68,328 KB
testcase_61 AC 472 ms
68,176 KB
testcase_62 AC 469 ms
68,028 KB
testcase_63 AC 595 ms
100,740 KB
testcase_64 AC 399 ms
65,140 KB
testcase_65 AC 636 ms
100,236 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import kotlin.math.min

val MOD = 1_000_000_007

fun main() {
  val (N) = readInts()
  val S = Array(N){ readLine()!!}
  val lcps = mutableListOf<Pair<Int, Int>>()
  for (i in 0 until N - 1) {
    var l = 0
    val mx = min(S[i].length, S[i + 1].length)
    while(l < mx && S[i][l] == S[i + 1][l]) l++
    lcps.add(Pair(i, l))
  }
  lcps.sortBy { it.second }
  val t = sortedSetOf<Int>()
  t.add(-1)
  t.add(N - 1)
  var ans = 0L
  S.forEach { ans += it.length }

  for (lcp in lcps) {
    val i = lcp.first
    val l = (i - t.lower(i)!! - 1).toLong()
    val r = (t.higher(i)!! - i - 1).toLong()
    var lensum = (l + 1) * (r + 1) * 2
    lensum += (l + 1) * r * (r + 1) / 2
    lensum += l * (l + 1) / 2 * (r + 1)
    ans += lensum * lcp.second
    debug{"l:$l r:$r"}
    t.add(i)
  }
  println(ans)
}

private val isDebug = try {
  // なんか本番でエラーでる
  System.getenv("MY_DEBUG") != null
} catch (t: Throwable) {
  false
}

private fun readLn() = readLine()!!
private fun readInt() = readLn().toInt()
private fun readStrings() = readLn().split(" ")
private fun readInts() = readStrings().map { it.toInt() }.toIntArray()
private fun readLongs() = readStrings().map { it.toLong() }.toLongArray()
private inline fun debug(msg: () -> String) {
  if (isDebug) System.err.println(msg())
}
private fun debug(a: LongArray) {
  debug{a.joinToString(" ")}
}
private fun debug(a: IntArray) {
  debug{a.joinToString(" ")}
}
private fun debug(a: BooleanArray) {
  debug{a.map{if(it) 1 else 0}.joinToString("")}
}
private fun debugDim(A: Array<IntArray>) {
  if (isDebug) {
    for (a in A) {
      debug(a)
    }
  }
}
0