結果

問題 No.1805 Approaching Many Typhoon
ユーザー yudedakoyudedako
提出日時 2022-01-24 22:46:24
言語 Scala(Beta)
(3.6.2)
結果
WA  
実行時間 -
コード長 878 bytes
コンパイル時間 16,249 ms
コンパイル使用メモリ 279,708 KB
実行使用メモリ 65,380 KB
最終ジャッジ日時 2024-12-15 02:14:20
合計ジャッジ時間 50,330 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 970 ms
63,684 KB
testcase_01 AC 935 ms
63,440 KB
testcase_02 AC 943 ms
63,328 KB
testcase_03 AC 972 ms
63,636 KB
testcase_04 WA -
testcase_05 AC 938 ms
63,680 KB
testcase_06 AC 943 ms
63,340 KB
testcase_07 AC 952 ms
63,516 KB
testcase_08 AC 928 ms
63,312 KB
testcase_09 WA -
testcase_10 AC 971 ms
63,504 KB
testcase_11 AC 983 ms
63,228 KB
testcase_12 WA -
testcase_13 AC 983 ms
63,600 KB
testcase_14 AC 950 ms
63,324 KB
testcase_15 WA -
testcase_16 AC 961 ms
63,492 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 942 ms
63,344 KB
testcase_21 AC 933 ms
63,364 KB
testcase_22 AC 968 ms
63,468 KB
testcase_23 AC 922 ms
63,352 KB
testcase_24 AC 947 ms
63,476 KB
testcase_25 AC 976 ms
63,296 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 1,018 ms
63,956 KB
testcase_29 AC 1,040 ms
64,060 KB
testcase_30 AC 990 ms
63,860 KB
testcase_31 AC 1,013 ms
63,940 KB
testcase_32 AC 931 ms
63,588 KB
testcase_33 AC 941 ms
63,288 KB
testcase_34 AC 964 ms
63,892 KB
testcase_35 AC 1,021 ms
64,020 KB
testcase_36 AC 975 ms
64,024 KB
testcase_37 AC 955 ms
63,552 KB
testcase_38 AC 933 ms
63,268 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
  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