結果

問題 No.1373 Directed Operations
ユーザー 箱星箱星
提出日時 2021-02-05 21:36:36
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 888 ms / 2,000 ms
コード長 968 bytes
コンパイル時間 12,973 ms
コンパイル使用メモリ 438,200 KB
実行使用メモリ 86,356 KB
最終ジャッジ日時 2024-07-02 11:48:17
合計ジャッジ時間 26,612 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 345 ms
55,432 KB
testcase_01 AC 320 ms
54,772 KB
testcase_02 AC 624 ms
76,668 KB
testcase_03 AC 467 ms
67,964 KB
testcase_04 AC 533 ms
71,756 KB
testcase_05 AC 332 ms
55,232 KB
testcase_06 AC 832 ms
80,336 KB
testcase_07 AC 379 ms
56,120 KB
testcase_08 AC 484 ms
58,260 KB
testcase_09 AC 763 ms
73,632 KB
testcase_10 AC 684 ms
70,140 KB
testcase_11 AC 524 ms
59,632 KB
testcase_12 AC 653 ms
69,608 KB
testcase_13 AC 415 ms
56,776 KB
testcase_14 AC 883 ms
86,356 KB
testcase_15 AC 842 ms
79,080 KB
testcase_16 AC 888 ms
86,120 KB
testcase_17 AC 660 ms
74,076 KB
testcase_18 AC 540 ms
64,616 KB
testcase_19 AC 641 ms
66,660 KB
testcase_20 AC 694 ms
70,260 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

fun PrintWriter.solve() {
    val n = nextInt()
    val a = Array(n - 1) { nextInt() }
    val b = (0 until n - 1).map { a[it] to it }.sortedBy { it.first }.toList()
    val op = Array(n - 1) { 0 }
    for (i in 0 until n - 1) {
        if (b[i].first !in 1..1 + i) {
            println("NO")
            return
        }
        op[b[i].second] = i + 2 - b[i].first
    }
    println("YES")
    println(op.joinToString("\n"))
}

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