結果

問題 No.1425 Yet Another Cyclic Shifts Sorting
ユーザー 箱星箱星
提出日時 2020-12-29 06:14:19
言語 Kotlin
(1.9.23)
結果
WA  
実行時間 -
コード長 1,541 bytes
コンパイル時間 13,296 ms
コンパイル使用メモリ 440,808 KB
実行使用メモリ 92,040 KB
最終ジャッジ日時 2024-10-04 17:42:25
合計ジャッジ時間 35,792 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 284 ms
49,656 KB
testcase_01 AC 333 ms
49,648 KB
testcase_02 AC 285 ms
49,892 KB
testcase_03 AC 286 ms
49,656 KB
testcase_04 AC 287 ms
49,984 KB
testcase_05 AC 290 ms
49,676 KB
testcase_06 AC 286 ms
49,896 KB
testcase_07 AC 284 ms
49,620 KB
testcase_08 AC 290 ms
49,768 KB
testcase_09 AC 284 ms
49,924 KB
testcase_10 AC 285 ms
49,756 KB
testcase_11 WA -
testcase_12 AC 285 ms
49,996 KB
testcase_13 AC 289 ms
49,808 KB
testcase_14 WA -
testcase_15 AC 292 ms
49,752 KB
testcase_16 AC 289 ms
49,916 KB
testcase_17 AC 286 ms
49,984 KB
testcase_18 AC 287 ms
49,652 KB
testcase_19 AC 288 ms
49,812 KB
testcase_20 AC 286 ms
49,708 KB
testcase_21 AC 288 ms
49,772 KB
testcase_22 AC 597 ms
69,988 KB
testcase_23 AC 425 ms
55,520 KB
testcase_24 AC 429 ms
54,912 KB
testcase_25 AC 572 ms
70,796 KB
testcase_26 AC 522 ms
73,796 KB
testcase_27 AC 516 ms
73,724 KB
testcase_28 AC 523 ms
77,256 KB
testcase_29 AC 441 ms
59,264 KB
testcase_30 AC 426 ms
56,200 KB
testcase_31 AC 533 ms
76,632 KB
testcase_32 AC 440 ms
59,156 KB
testcase_33 AC 368 ms
51,148 KB
testcase_34 AC 448 ms
59,920 KB
testcase_35 AC 580 ms
75,636 KB
testcase_36 WA -
testcase_37 WA -
testcase_38 AC 566 ms
92,040 KB
testcase_39 WA -
testcase_40 WA -
testcase_41 AC 456 ms
59,840 KB
testcase_42 WA -
testcase_43 WA -
testcase_44 AC 414 ms
54,764 KB
testcase_45 WA -
testcase_46 AC 565 ms
91,976 KB
testcase_47 WA -
testcase_48 AC 559 ms
91,668 KB
testcase_49 AC 564 ms
91,940 KB
testcase_50 AC 287 ms
49,720 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

fun PrintWriter.solve() {
    val n = nextInt()
    val a = Array(n) { nextInt() }
    // a[i],...,a[n-1]がソートされているかどうか
    val isSorted = Array(n) { false }
    // a[0],...,a[i]における減少回数
    val decrease = Array(n) { 0 }
    // a[0],...,a[i]の最大値
    val max = Array(n) { a[0] }
    isSorted[n - 1] = true
    for (i in n - 2 downTo 0) {
        if (a[i] <= a[i + 1]) {
            isSorted[i] = true
        } else {
            break
        }
    }
    if (isSorted[0]) {
        println(0)
        return
    }
    for (i in 1 until n) {
        decrease[i] = decrease[i - 1]
        if (a[i - 1] > a[i]) decrease[i]++
        max[i] = maxOf(max[i - 1], a[i])
    }
    for (i in 0 until n - 1) {
        if (decrease[i] == 1 && a[i] <= a[0] && isSorted[i + 1] && max[i] <= a[i + 1]) {
            println(1)
            return
        }
    }
    if (decrease[n - 1] >= 1 && a[n - 1] <= a[0]) {
        println(1)
        return
    }
    println(2)
}

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