結果

問題 No.1778 括弧列クエリ / Bracketed Sequence Query
ユーザー yudedakoyudedako
提出日時 2022-01-28 22:48:56
言語 Scala(Beta)
(3.4.0)
結果
TLE  
実行時間 -
コード長 1,239 bytes
コンパイル時間 11,615 ms
コンパイル使用メモリ 285,428 KB
実行使用メモリ 124,632 KB
最終ジャッジ日時 2024-06-09 16:19:33
合計ジャッジ時間 42,140 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 TLE -
testcase_02 TLE -
testcase_03 AC 1,827 ms
98,368 KB
testcase_04 TLE -
testcase_05 AC 1,858 ms
97,752 KB
testcase_06 AC 1,695 ms
85,320 KB
testcase_07 AC 1,112 ms
70,160 KB
testcase_08 TLE -
testcase_09 AC 1,324 ms
72,568 KB
testcase_10 AC 1,760 ms
95,024 KB
testcase_11 AC 1,717 ms
90,172 KB
testcase_12 AC 1,911 ms
99,020 KB
testcase_13 TLE -
testcase_14 AC 1,719 ms
93,564 KB
testcase_15 AC 862 ms
66,264 KB
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 AC 837 ms
66,252 KB
testcase_22 AC 841 ms
66,300 KB
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 AC 1,918 ms
115,240 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader
import scala.annotation.tailrec
import scala.collection.{immutable, mutable}
import scala.io.StdIn.readLine
import scala.math.*
import scala.annotation.tailrec
import scala.io.{BufferedSource, StdIn}

def readLine()(using reader: BufferedReader): String = reader.readLine()
@main def main =
  given reader: BufferedReader = scala.io.Source.stdin.bufferedReader()
  val Array(n, q) = readLine().split(' ').map(_.toInt)
  val s = readLine()
  val queries = Array.fill(q){
    val Array(x, y) = readLine().split(' ').map(_.toInt - 1)
    min(x, y) -> max(x, y)
  }
  val stack = mutable.ArrayDeque[Int]()
  val pair = Array.fill(n){-1}
  for (c, i) <- s.zipWithIndex do
    c match
      case '(' => stack.addOne(i)
      case ')' =>
        val h = stack.removeLast()
        pair(i) = h
        pair(h) = i
  val result = Array.fill(q){"-1"}
  val set = mutable.TreeSet[Int]()
  var last = 0
  for ((x, y), i) <- queries.zipWithIndex.sortBy(_._1) do
    while last <= x do
      if s(last) == '(' then
        set.addOne(pair(last))
      last += 1
    set.minAfter(y) match
      case Some(right) => result(i) = s"${pair(right) + 1} ${right + 1}"
      case None =>
  println(
    result.mkString("\n")
  )


0