結果

問題 No.1424 Ultrapalindrome
ユーザー leetcoincollectorleetcoincollector
提出日時 2021-03-12 22:10:06
言語 Kotlin
(1.9.23)
結果
WA  
実行時間 -
コード長 1,125 bytes
コンパイル時間 13,228 ms
コンパイル使用メモリ 444,560 KB
実行使用メモリ 115,088 KB
最終ジャッジ日時 2024-10-14 12:39:41
合計ジャッジ時間 34,055 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 286 ms
51,796 KB
testcase_01 AC 289 ms
51,624 KB
testcase_02 AC 292 ms
51,628 KB
testcase_03 WA -
testcase_04 AC 289 ms
51,492 KB
testcase_05 WA -
testcase_06 AC 286 ms
51,704 KB
testcase_07 AC 286 ms
51,760 KB
testcase_08 WA -
testcase_09 AC 924 ms
102,120 KB
testcase_10 AC 896 ms
102,392 KB
testcase_11 AC 769 ms
95,020 KB
testcase_12 AC 886 ms
101,032 KB
testcase_13 AC 573 ms
69,104 KB
testcase_14 AC 797 ms
95,848 KB
testcase_15 AC 320 ms
51,992 KB
testcase_16 AC 733 ms
93,780 KB
testcase_17 AC 792 ms
95,660 KB
testcase_18 AC 681 ms
87,180 KB
testcase_19 AC 787 ms
96,160 KB
testcase_20 AC 512 ms
63,916 KB
testcase_21 AC 720 ms
92,096 KB
testcase_22 AC 611 ms
75,696 KB
testcase_23 AC 472 ms
58,788 KB
testcase_24 AC 505 ms
63,080 KB
testcase_25 AC 487 ms
62,128 KB
testcase_26 AC 856 ms
100,140 KB
testcase_27 WA -
testcase_28 RE -
testcase_29 RE -
testcase_30 AC 812 ms
115,088 KB
testcase_31 AC 831 ms
112,200 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:33:10: warning: parameter 'args' is never used
fun main(args : Array<String>) {
         ^

ソースコード

diff #

data class Node (
    val id: Int,
    var col: Int,
    val ngh: ArrayList<Node> = ArrayList<Node>()

){
    fun colorize(c: Int): Boolean {
//        println("$id -> $c")
        if(col > 0) return col == c
        col = c
        for(x in ngh){
            x.colorize(3 - c)
        }
        return true
    }
}

class Graph(N: Int) {
    val nodes = ArrayList<Node>()

    init {
        for (i in 0 until N) {
            nodes.add(Node(i, 0))
        }
    }

    fun join(a:Int, b:Int){
        nodes[a].ngh.add(nodes[b])
        nodes[b].ngh.add(nodes[a])
    }
}

fun main(args : Array<String>) {

    val N = readLine()!!.toInt()
    val g = Graph(N)
    val seen = HashSet<Int>()
    val leaves = HashSet<Int>()
    for(t in 1 until N) {
        val (a, b) = readLine()!!.split(" ").map { it.toInt() - 1}
        g.join(a, b)
        if(a in seen)leaves.remove(a) else leaves.add(a)
        if(b in seen)leaves.remove(b) else leaves.add(b)
        seen.add(a)
        seen.add(b)
    }

    var ok = true
    for(x in leaves) {
        ok = ok  && g.nodes[x].colorize(1)
    }
    println(if(ok)"Yes" else "No")
}
0