結果

問題 No.1425 Yet Another Cyclic Shifts Sorting
ユーザー 箱星箱星
提出日時 2020-12-09 16:16:52
言語 Kotlin
(1.9.23)
結果
WA  
実行時間 -
コード長 1,522 bytes
コンパイル時間 13,394 ms
コンパイル使用メモリ 444,848 KB
実行使用メモリ 91,508 KB
最終ジャッジ日時 2024-09-21 13:51:04
合計ジャッジ時間 31,974 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 266 ms
49,832 KB
testcase_01 AC 253 ms
49,772 KB
testcase_02 AC 256 ms
49,800 KB
testcase_03 AC 253 ms
49,652 KB
testcase_04 AC 256 ms
49,584 KB
testcase_05 AC 257 ms
49,884 KB
testcase_06 AC 259 ms
49,672 KB
testcase_07 AC 260 ms
49,672 KB
testcase_08 AC 264 ms
49,640 KB
testcase_09 AC 263 ms
49,692 KB
testcase_10 AC 263 ms
49,756 KB
testcase_11 AC 259 ms
49,608 KB
testcase_12 AC 262 ms
49,724 KB
testcase_13 AC 254 ms
49,704 KB
testcase_14 WA -
testcase_15 AC 258 ms
49,572 KB
testcase_16 AC 265 ms
49,596 KB
testcase_17 AC 264 ms
49,620 KB
testcase_18 AC 266 ms
49,724 KB
testcase_19 AC 262 ms
49,748 KB
testcase_20 AC 265 ms
49,832 KB
testcase_21 AC 258 ms
49,660 KB
testcase_22 AC 467 ms
69,452 KB
testcase_23 AC 374 ms
55,256 KB
testcase_24 AC 390 ms
54,728 KB
testcase_25 AC 466 ms
70,440 KB
testcase_26 AC 493 ms
73,464 KB
testcase_27 AC 491 ms
73,904 KB
testcase_28 AC 490 ms
76,792 KB
testcase_29 AC 418 ms
59,196 KB
testcase_30 AC 402 ms
56,216 KB
testcase_31 AC 493 ms
76,460 KB
testcase_32 AC 405 ms
58,924 KB
testcase_33 AC 328 ms
51,252 KB
testcase_34 AC 416 ms
59,936 KB
testcase_35 AC 495 ms
75,176 KB
testcase_36 AC 469 ms
70,772 KB
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 AC 413 ms
59,856 KB
testcase_42 AC 421 ms
61,632 KB
testcase_43 AC 346 ms
51,684 KB
testcase_44 WA -
testcase_45 AC 552 ms
91,184 KB
testcase_46 WA -
testcase_47 AC 525 ms
90,996 KB
testcase_48 WA -
testcase_49 AC 534 ms
91,012 KB
testcase_50 WA -
権限があれば一括ダウンロードができます

ソースコード

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] && 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