結果

問題 No.1425 Yet Another Cyclic Shifts Sorting
ユーザー 箱星箱星
提出日時 2020-12-09 16:14:34
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 496 ms / 2,000 ms
コード長 1,541 bytes
コンパイル時間 14,903 ms
コンパイル使用メモリ 442,556 KB
実行使用メモリ 97,156 KB
最終ジャッジ日時 2024-10-14 15:59:02
合計ジャッジ時間 33,596 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 267 ms
53,872 KB
testcase_01 AC 264 ms
53,764 KB
testcase_02 AC 261 ms
53,976 KB
testcase_03 AC 265 ms
53,648 KB
testcase_04 AC 275 ms
53,932 KB
testcase_05 AC 266 ms
53,876 KB
testcase_06 AC 257 ms
53,652 KB
testcase_07 AC 260 ms
53,656 KB
testcase_08 AC 256 ms
53,896 KB
testcase_09 AC 263 ms
53,888 KB
testcase_10 AC 270 ms
53,780 KB
testcase_11 AC 266 ms
53,948 KB
testcase_12 AC 267 ms
53,796 KB
testcase_13 AC 261 ms
53,788 KB
testcase_14 AC 260 ms
53,972 KB
testcase_15 AC 268 ms
53,984 KB
testcase_16 AC 259 ms
53,672 KB
testcase_17 AC 269 ms
53,704 KB
testcase_18 AC 269 ms
53,848 KB
testcase_19 AC 272 ms
53,668 KB
testcase_20 AC 266 ms
53,792 KB
testcase_21 AC 265 ms
53,644 KB
testcase_22 AC 463 ms
75,352 KB
testcase_23 AC 378 ms
61,332 KB
testcase_24 AC 381 ms
58,960 KB
testcase_25 AC 449 ms
75,076 KB
testcase_26 AC 453 ms
79,400 KB
testcase_27 AC 457 ms
79,232 KB
testcase_28 AC 470 ms
81,556 KB
testcase_29 AC 406 ms
64,968 KB
testcase_30 AC 390 ms
60,740 KB
testcase_31 AC 461 ms
81,672 KB
testcase_32 AC 393 ms
64,792 KB
testcase_33 AC 360 ms
56,200 KB
testcase_34 AC 396 ms
64,788 KB
testcase_35 AC 452 ms
79,376 KB
testcase_36 AC 438 ms
75,444 KB
testcase_37 AC 376 ms
59,160 KB
testcase_38 AC 483 ms
96,944 KB
testcase_39 AC 330 ms
56,324 KB
testcase_40 AC 448 ms
79,508 KB
testcase_41 AC 407 ms
64,920 KB
testcase_42 AC 409 ms
66,996 KB
testcase_43 AC 348 ms
56,440 KB
testcase_44 AC 380 ms
58,916 KB
testcase_45 AC 495 ms
97,072 KB
testcase_46 AC 490 ms
96,948 KB
testcase_47 AC 490 ms
97,156 KB
testcase_48 AC 496 ms
96,684 KB
testcase_49 AC 495 ms
96,676 KB
testcase_50 AC 258 ms
53,980 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