結果

問題 No.1805 Approaching Many Typhoon
ユーザー yudedakoyudedako
提出日時 2022-01-24 22:47:12
言語 Scala(Beta)
(3.6.2)
結果
AC  
実行時間 1,023 ms / 2,000 ms
コード長 897 bytes
コンパイル時間 18,329 ms
コンパイル使用メモリ 272,916 KB
実行使用メモリ 65,736 KB
最終ジャッジ日時 2024-12-15 02:15:52
合計ジャッジ時間 52,647 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 972 ms
65,196 KB
testcase_01 AC 972 ms
65,236 KB
testcase_02 AC 953 ms
65,112 KB
testcase_03 AC 973 ms
65,236 KB
testcase_04 AC 954 ms
65,224 KB
testcase_05 AC 958 ms
65,044 KB
testcase_06 AC 951 ms
65,136 KB
testcase_07 AC 952 ms
65,080 KB
testcase_08 AC 950 ms
65,192 KB
testcase_09 AC 956 ms
65,040 KB
testcase_10 AC 969 ms
65,216 KB
testcase_11 AC 937 ms
65,344 KB
testcase_12 AC 940 ms
65,120 KB
testcase_13 AC 938 ms
65,324 KB
testcase_14 AC 930 ms
65,044 KB
testcase_15 AC 933 ms
65,108 KB
testcase_16 AC 986 ms
65,368 KB
testcase_17 AC 951 ms
65,320 KB
testcase_18 AC 954 ms
65,124 KB
testcase_19 AC 939 ms
65,296 KB
testcase_20 AC 949 ms
65,024 KB
testcase_21 AC 966 ms
65,160 KB
testcase_22 AC 935 ms
65,192 KB
testcase_23 AC 965 ms
65,228 KB
testcase_24 AC 946 ms
65,284 KB
testcase_25 AC 937 ms
65,324 KB
testcase_26 AC 982 ms
65,256 KB
testcase_27 AC 943 ms
65,196 KB
testcase_28 AC 1,023 ms
65,620 KB
testcase_29 AC 1,003 ms
65,688 KB
testcase_30 AC 1,006 ms
65,636 KB
testcase_31 AC 1,017 ms
65,736 KB
testcase_32 AC 979 ms
65,460 KB
testcase_33 AC 980 ms
65,392 KB
testcase_34 AC 991 ms
65,588 KB
testcase_35 AC 995 ms
65,516 KB
testcase_36 AC 1,014 ms
65,632 KB
testcase_37 AC 953 ms
65,368 KB
testcase_38 AC 982 ms
65,308 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