結果

問題 No.1805 Approaching Many Typhoon
ユーザー yudedakoyudedako
提出日時 2022-01-24 22:47:12
言語 Scala(Beta)
(3.4.0)
結果
AC  
実行時間 1,097 ms / 2,000 ms
コード長 897 bytes
コンパイル時間 14,841 ms
コンパイル使用メモリ 271,100 KB
実行使用メモリ 64,220 KB
最終ジャッジ日時 2024-05-08 19:28:03
合計ジャッジ時間 54,798 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 995 ms
63,580 KB
testcase_01 AC 966 ms
63,568 KB
testcase_02 AC 965 ms
63,544 KB
testcase_03 AC 967 ms
63,760 KB
testcase_04 AC 963 ms
63,704 KB
testcase_05 AC 951 ms
63,740 KB
testcase_06 AC 961 ms
63,488 KB
testcase_07 AC 972 ms
63,700 KB
testcase_08 AC 961 ms
63,320 KB
testcase_09 AC 1,005 ms
63,492 KB
testcase_10 AC 967 ms
63,440 KB
testcase_11 AC 985 ms
63,428 KB
testcase_12 AC 986 ms
63,496 KB
testcase_13 AC 1,036 ms
63,564 KB
testcase_14 AC 987 ms
63,548 KB
testcase_15 AC 986 ms
63,520 KB
testcase_16 AC 990 ms
63,524 KB
testcase_17 AC 990 ms
63,416 KB
testcase_18 AC 1,007 ms
63,696 KB
testcase_19 AC 986 ms
63,544 KB
testcase_20 AC 1,024 ms
63,808 KB
testcase_21 AC 988 ms
63,480 KB
testcase_22 AC 989 ms
63,664 KB
testcase_23 AC 982 ms
63,708 KB
testcase_24 AC 977 ms
63,576 KB
testcase_25 AC 972 ms
63,808 KB
testcase_26 AC 1,022 ms
63,424 KB
testcase_27 AC 1,019 ms
63,476 KB
testcase_28 AC 1,075 ms
63,992 KB
testcase_29 AC 1,059 ms
63,764 KB
testcase_30 AC 1,045 ms
64,000 KB
testcase_31 AC 1,097 ms
64,088 KB
testcase_32 AC 1,013 ms
63,832 KB
testcase_33 AC 1,043 ms
63,716 KB
testcase_34 AC 1,033 ms
63,904 KB
testcase_35 AC 1,051 ms
64,220 KB
testcase_36 AC 1,027 ms
64,160 KB
testcase_37 AC 979 ms
63,572 KB
testcase_38 AC 1,000 ms
63,664 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import scala.collection.mutable
import scala.io.StdIn.*
import scala.math.min

@main def main =
  val Array(n, m) = readLine().split(' ').map(_.toInt)
  val Array(s, g) = readLine().split(' ').map(_.toInt - 1)
  val edges = Array.fill(m){
    val Array(f, t) = readLine().split(' ').map(_.toInt - 1)
    (f, t)
  }
  val graph = Array.fill(n){Nil: List[Int]}
  for (f, t) <- edges do
    graph(f) ::= t
    graph(t) ::= f
  val u = readLine().toInt
  val closed = if u > 0 then readLine().split(' ').map(_.toInt - 1) else Array[Int]()
  val visit = Array.fill(n){false}
  val stack = mutable.ArrayDeque[Int]().addOne(s)
  visit(s) = true
  for i <- closed do
    visit(i) = true
  while stack.nonEmpty do
    val current = stack.removeLast()
    for next <- graph(current) do
      if !visit(next) then
        visit(next) = true
        stack.addOne(next)
  println(if (visit(g)) "Yes" else "No")
0