結果

問題 No.1373 Directed Operations
ユーザー face4face4
提出日時 2021-07-24 11:31:44
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 947 ms / 2,000 ms
コード長 641 bytes
コンパイル時間 15,998 ms
コンパイル使用メモリ 437,260 KB
実行使用メモリ 93,676 KB
最終ジャッジ日時 2024-07-19 15:53:43
合計ジャッジ時間 30,071 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 328 ms
55,712 KB
testcase_01 AC 350 ms
55,844 KB
testcase_02 AC 656 ms
80,876 KB
testcase_03 AC 542 ms
71,452 KB
testcase_04 AC 558 ms
75,352 KB
testcase_05 AC 307 ms
52,092 KB
testcase_06 AC 848 ms
84,200 KB
testcase_07 AC 395 ms
56,556 KB
testcase_08 AC 510 ms
58,528 KB
testcase_09 AC 817 ms
77,416 KB
testcase_10 AC 774 ms
74,420 KB
testcase_11 AC 647 ms
62,844 KB
testcase_12 AC 726 ms
73,108 KB
testcase_13 AC 495 ms
58,188 KB
testcase_14 AC 947 ms
93,140 KB
testcase_15 AC 867 ms
82,384 KB
testcase_16 AC 908 ms
93,676 KB
testcase_17 AC 696 ms
77,532 KB
testcase_18 AC 569 ms
66,176 KB
testcase_19 AC 653 ms
68,472 KB
testcase_20 AC 708 ms
73,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*
import kotlin.system.exitProcess

fun main() {
    val n = readLine()!!.toInt()
    val a = readLine()!!.split(" ").map { it.toInt() }
    val ord = a.zip(0 until n - 1).sortedBy { it.first }
    var ans = MutableList(n - 1) { 0 }
    var pos = 0
    val queue = LinkedList<Pair<Int, Int>>()
    for (i in 2..n) {
        while (pos < n - 1 && ord[pos].first == i - 1) queue.add(ord[pos++])
        if (queue.isEmpty()) {
            println("NO")
            exitProcess(0)
        }
        val (value, index) = queue.poll()!!
        ans[index] = i - value
    }
    println("YES")
    println(ans.joinToString("\n"))
}
0