結果

問題 No.1425 Yet Another Cyclic Shifts Sorting
ユーザー 箱星箱星
提出日時 2020-12-09 21:58:37
言語 Kotlin
(1.9.23)
結果
WA  
実行時間 -
コード長 1,540 bytes
コンパイル時間 11,439 ms
コンパイル使用メモリ 437,032 KB
実行使用メモリ 92,208 KB
最終ジャッジ日時 2024-09-21 13:57:28
合計ジャッジ時間 31,964 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 261 ms
53,612 KB
testcase_01 AC 262 ms
53,724 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 262 ms
53,556 KB
testcase_05 AC 269 ms
53,528 KB
testcase_06 AC 261 ms
53,676 KB
testcase_07 AC 260 ms
53,420 KB
testcase_08 AC 261 ms
53,700 KB
testcase_09 AC 264 ms
53,736 KB
testcase_10 AC 274 ms
53,692 KB
testcase_11 AC 276 ms
53,680 KB
testcase_12 AC 267 ms
53,476 KB
testcase_13 AC 272 ms
53,728 KB
testcase_14 AC 261 ms
53,776 KB
testcase_15 AC 268 ms
53,444 KB
testcase_16 AC 260 ms
53,548 KB
testcase_17 AC 265 ms
53,716 KB
testcase_18 AC 262 ms
53,576 KB
testcase_19 AC 259 ms
53,476 KB
testcase_20 AC 264 ms
53,652 KB
testcase_21 AC 257 ms
53,608 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 385 ms
58,676 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 405 ms
63,084 KB
testcase_30 AC 390 ms
56,896 KB
testcase_31 WA -
testcase_32 WA -
testcase_33 AC 331 ms
51,416 KB
testcase_34 WA -
testcase_35 WA -
testcase_36 AC 440 ms
70,572 KB
testcase_37 AC 377 ms
55,116 KB
testcase_38 AC 523 ms
91,896 KB
testcase_39 AC 342 ms
51,060 KB
testcase_40 AC 480 ms
74,148 KB
testcase_41 AC 410 ms
59,980 KB
testcase_42 AC 424 ms
61,736 KB
testcase_43 AC 333 ms
51,644 KB
testcase_44 AC 372 ms
54,300 KB
testcase_45 AC 528 ms
91,924 KB
testcase_46 AC 514 ms
91,952 KB
testcase_47 AC 532 ms
91,784 KB
testcase_48 AC 534 ms
92,208 KB
testcase_49 AC 520 ms
92,124 KB
testcase_50 AC 256 ms
49,696 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