結果

問題 No.1425 Yet Another Cyclic Shifts Sorting
ユーザー 箱星箱星
提出日時 2020-12-09 21:59:43
言語 Kotlin
(1.9.23)
結果
WA  
実行時間 -
コード長 1,542 bytes
コンパイル時間 13,787 ms
コンパイル使用メモリ 452,056 KB
実行使用メモリ 92,160 KB
最終ジャッジ日時 2024-09-21 13:58:36
合計ジャッジ時間 37,496 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 295 ms
49,960 KB
testcase_01 AC 296 ms
50,024 KB
testcase_02 AC 303 ms
49,780 KB
testcase_03 AC 298 ms
49,920 KB
testcase_04 AC 298 ms
49,864 KB
testcase_05 AC 301 ms
49,772 KB
testcase_06 AC 297 ms
49,764 KB
testcase_07 AC 299 ms
49,792 KB
testcase_08 AC 309 ms
49,792 KB
testcase_09 AC 298 ms
49,960 KB
testcase_10 AC 298 ms
49,996 KB
testcase_11 AC 310 ms
50,072 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 311 ms
49,808 KB
testcase_15 AC 325 ms
49,992 KB
testcase_16 AC 317 ms
49,996 KB
testcase_17 AC 309 ms
50,160 KB
testcase_18 AC 314 ms
49,760 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 298 ms
50,080 KB
testcase_22 AC 496 ms
69,860 KB
testcase_23 AC 436 ms
55,660 KB
testcase_24 AC 419 ms
54,900 KB
testcase_25 AC 495 ms
70,628 KB
testcase_26 AC 509 ms
73,660 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 AC 449 ms
59,064 KB
testcase_33 AC 388 ms
51,492 KB
testcase_34 AC 454 ms
60,524 KB
testcase_35 WA -
testcase_36 AC 534 ms
70,640 KB
testcase_37 AC 432 ms
54,840 KB
testcase_38 AC 552 ms
92,156 KB
testcase_39 AC 377 ms
51,300 KB
testcase_40 AC 510 ms
73,952 KB
testcase_41 AC 463 ms
60,176 KB
testcase_42 AC 471 ms
61,632 KB
testcase_43 AC 386 ms
51,664 KB
testcase_44 AC 429 ms
54,284 KB
testcase_45 AC 593 ms
92,072 KB
testcase_46 AC 593 ms
92,160 KB
testcase_47 AC 589 ms
91,992 KB
testcase_48 AC 544 ms
91,832 KB
testcase_49 AC 547 ms
92,052 KB
testcase_50 AC 306 ms
50,064 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