結果

問題 No.1023 Cyclic Tour
ユーザー yakamotoyakamoto
提出日時 2020-04-11 23:15:13
言語 Kotlin
(1.9.23)
結果
WA  
実行時間 -
コード長 3,945 bytes
コンパイル時間 16,454 ms
コンパイル使用メモリ 466,716 KB
実行使用メモリ 103,944 KB
最終ジャッジ日時 2024-09-19 16:18:01
合計ジャッジ時間 55,382 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 275 ms
54,476 KB
testcase_01 AC 273 ms
54,144 KB
testcase_02 AC 273 ms
54,352 KB
testcase_03 AC 277 ms
54,360 KB
testcase_04 AC 586 ms
88,572 KB
testcase_05 AC 590 ms
89,280 KB
testcase_06 AC 605 ms
90,360 KB
testcase_07 AC 606 ms
90,388 KB
testcase_08 AC 633 ms
91,084 KB
testcase_09 AC 641 ms
91,208 KB
testcase_10 AC 641 ms
91,392 KB
testcase_11 AC 652 ms
90,192 KB
testcase_12 AC 651 ms
91,588 KB
testcase_13 AC 644 ms
88,208 KB
testcase_14 AC 639 ms
88,336 KB
testcase_15 AC 656 ms
87,296 KB
testcase_16 AC 874 ms
103,944 KB
testcase_17 AC 772 ms
102,676 KB
testcase_18 AC 741 ms
100,468 KB
testcase_19 AC 747 ms
103,908 KB
testcase_20 AC 719 ms
94,792 KB
testcase_21 AC 728 ms
95,060 KB
testcase_22 AC 745 ms
96,308 KB
testcase_23 AC 779 ms
94,736 KB
testcase_24 AC 839 ms
101,028 KB
testcase_25 AC 715 ms
94,156 KB
testcase_26 AC 741 ms
94,172 KB
testcase_27 AC 773 ms
94,776 KB
testcase_28 AC 771 ms
101,880 KB
testcase_29 AC 790 ms
103,180 KB
testcase_30 AC 776 ms
99,632 KB
testcase_31 AC 826 ms
96,684 KB
testcase_32 AC 729 ms
96,596 KB
testcase_33 AC 759 ms
101,540 KB
testcase_34 WA -
testcase_35 WA -
testcase_36 AC 729 ms
95,732 KB
testcase_37 AC 768 ms
96,056 KB
testcase_38 AC 776 ms
96,896 KB
testcase_39 AC 780 ms
96,632 KB
testcase_40 AC 747 ms
95,592 KB
testcase_41 AC 752 ms
95,332 KB
testcase_42 AC 713 ms
95,516 KB
testcase_43 AC 757 ms
97,048 KB
testcase_44 AC 598 ms
91,748 KB
testcase_45 AC 604 ms
86,652 KB
testcase_46 AC 578 ms
85,936 KB
testcase_47 AC 590 ms
86,756 KB
testcase_48 AC 710 ms
94,268 KB
testcase_49 AC 744 ms
93,804 KB
testcase_50 AC 765 ms
93,828 KB
testcase_51 AC 711 ms
93,812 KB
testcase_52 AC 720 ms
93,960 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader
import java.io.InputStream
import java.io.InputStreamReader
import java.util.*
import kotlin.math.abs
import kotlin.math.max
import kotlin.math.min

val MOD = 1_000_000_007L

class UnionFind(n: Int) {
  private val par = IntArray(n){it}
  val rank = IntArray(n){1} // 集合の要素数
  private val visits = IntArray(n) // 訪れた場所をfind毎に用意するのがもったいないのでつかいまわす

  fun find(x: Int): Int {
    var ptr = 0
    var i = x
    while(par[i] != i) {
      visits[ptr++] = i
      i = par[i]
    }

    repeat(ptr){ par[visits[it]] = i }
    return i
  }

  private fun merge(node: Int, rt: Int): Int {
    par[node] = rt
    rank[rt] += rank[node]
    return rt
  }

  fun unite(x: Int, y: Int): Int {
    val x1 = find(x)
    val y1 = find(y)
    return if (x1 == y1) x1
    else {
      if (rank[x1] < rank[y1])
        merge(x1, y1)
      else
        merge(y1, x1)
    }
  }

  /**
   * xを解決する必要がないときは直にrankをみる
   */
  fun cntNodes(x: Int): Int = rank[find(x)]
}

data class Edge(val a: Int, val b: Int, val tpe: Int)
class Solver(stream: InputStream, private val out: java.io.PrintWriter) {
  fun solve() {
    val N = ni()
    val M = ni()
    val E = Array(M){Edge(ni() - 1, ni() - 1, ni())}
    val uf = UnionFind(N)
    for (e in E) {
      if (e.tpe == 1) uf.unite(e.a, e.b)
    }

    val id = IntArray(N){it}
    for (v in 0 until N) {
      id[v] = uf.find(v)
    }

    val outs = Array(N){ mutableListOf<Int>()}
    val ins = IntArray(N)
    val que = java.util.ArrayDeque<Int>()
    for (e in E) {
      if (e.tpe != 2) continue
      outs[id[e.a]].add(id[e.b])
      ins[id[e.b]]++
    }

    for (v in 0 until N) {
      if (ins[v] == 0) que.add(v)
    }

    while(que.isNotEmpty()) {
      val v = que.poll()
      for (u in outs[v]) {
        if (--ins[u] == 0) que.add(u)
      }
    }

    val ok = ins.any { it > 0 }
    out.println(if (ok) "Yes" else "No")
  }













































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

  private var tokenizer: StringTokenizer? = null
  private val reader = BufferedReader(InputStreamReader(stream), 32768)
  private fun next(): String {
    while (tokenizer == null || !tokenizer!!.hasMoreTokens()) {
      tokenizer = StringTokenizer(reader.readLine())
    }
    return tokenizer!!.nextToken()
  }

  private fun ni() = next().toInt()
  private fun nl() = next().toLong()
  private fun ns() = next()
  private fun na(n: Int, offset: Int = 0): IntArray {
    return map(n) { ni() + offset }
  }
  private fun nal(n: Int, offset: Int = 0): LongArray {
    val res = LongArray(n)
    for (i in 0 until n) {
      res[i] = nl() + offset
    }
    return res
  }

  private fun na2(n: Int, offset: Int = 0): Array<IntArray> {
    val a  = Array(2){IntArray(n)}
    for (i in 0 until n) {
      for (e in a) {
        e[i] = ni() + offset
      }
    }
    return a
  }

  private inline fun map(n: Int, f: (Int) -> Int): IntArray {
    val res = IntArray(n)
    for (i in 0 until n) {
      res[i] = f(i)
    }
    return res
  }

  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)
      }
    }
  }

  /**
   * 勝手にimport消されるのを防ぎたい
   */
  private fun hoge() {
    min(1, 2)
    max(1, 2)
    abs(-10)
  }
}

fun main() {
  val out = java.io.PrintWriter(System.out)
  Solver(System.`in`, out).solve()
  out.flush()
}
0