結果

問題 No.1610 She Loves Me, She Loves Me Not, ...
ユーザー 箱星箱星
提出日時 2021-07-21 22:48:04
言語 Kotlin
(2.1.0)
結果
AC  
実行時間 416 ms / 2,000 ms
コード長 1,262 bytes
コンパイル時間 13,498 ms
コンパイル使用メモリ 443,152 KB
実行使用メモリ 54,764 KB
最終ジャッジ日時 2024-07-17 19:52:58
合計ジャッジ時間 27,329 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 32
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.PrintWriter
import java.util.*
import kotlin.math.*

fun PrintWriter.solve() {
    val n = nextInt()
    val m = nextInt()
    val adj = Array(n) { mutableListOf<Int>() }
    for (i in 0 until m) {
        val v1 = nextInt() - 1
        val v2 = nextInt() - 1
        adj[v1].add(v2)
        adj[v2].add(v1)
    }
    var count = 0
    val stack = Stack<Int>()
    for (i in 0 until n) {
        if (adj[i].size == 1) {
            stack.push(i)
        }
    }
    while (stack.isNotEmpty()) {
        val v = stack.pop()
        if (adj[v].size != 1) continue
        val w = adj[v][0]
        count++
        adj[v].remove(w)
        adj[w].remove(v)
        if (adj[w].size == 1) {
            stack.push(w)
        }
    }
    println(if (count % 2 == 1) "Yes" else "No")
}

fun main() {
    val writer = PrintWriter(System.out, false)
    writer.solve()
    writer.flush()
}

// region Scanner
private var st = StringTokenizer("")
private val br = System.`in`.bufferedReader()

fun next(): String {
    while (!st.hasMoreTokens()) st = StringTokenizer(br.readLine())
    return st.nextToken()
}

fun nextInt() = next().toInt()
fun nextLong() = next().toLong()
fun nextLine() = br.readLine()
fun nextDouble() = next().toDouble()
// endregion
0