結果

問題 No.1441 MErGe
ユーザー first_vilfirst_vil
提出日時 2021-03-10 15:25:27
言語 Kotlin
(1.9.23)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 1,987 bytes
コンパイル時間 14,003 ms
コンパイル使用メモリ 447,472 KB
実行使用メモリ 107,736 KB
最終ジャッジ日時 2024-10-12 06:10:23
合計ジャッジ時間 44,718 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 270 ms
49,676 KB
testcase_01 AC 278 ms
49,868 KB
testcase_02 AC 273 ms
49,928 KB
testcase_03 AC 401 ms
52,532 KB
testcase_04 AC 418 ms
52,776 KB
testcase_05 AC 490 ms
52,840 KB
testcase_06 AC 465 ms
53,048 KB
testcase_07 AC 463 ms
53,184 KB
testcase_08 AC 800 ms
83,800 KB
testcase_09 AC 771 ms
83,444 KB
testcase_10 AC 929 ms
97,272 KB
testcase_11 AC 997 ms
104,772 KB
testcase_12 AC 937 ms
97,052 KB
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 AC 959 ms
97,380 KB
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 AC 878 ms
89,672 KB
testcase_29 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.PrintWriter
import java.util.*

fun PrintWriter.solve() {
    val n = nextInt()
    val q = nextInt()
    val a = LongArray(n) { nextLong() }
    for (i in 1 until n) a[i] += a[i - 1]

    //BIT setup
    val dat = Array(n + 1) { 1 }
    for (i in 1..n) if (i + (i and -i) <= n) dat[i + (i and -i)] += dat[i]
    var n2 = 1
    while (n2 * 2 <= n) n2 *= 2

    repeat(q) {
        val t = nextInt()
        val l = nextInt()
        val r = nextInt()
        if (t == 1) {
            repeat(r - l) {
                var j = 0
                var x = l + 1
                var k = n2
                while (0 < k) {
                    if (j + k <= n && x > dat[j + k]) {
                        x -= dat[j + k]
                        j += k
                    }
                    k /= 2
                }
                ++j
                while (j <= n) {
                    --dat[j]
                    j += j and -j
                }
            }
        } else {
            var L = 0
            var R = 0
            var x = l
            var y = r + 1
            var k = n2
            while (0 < k) {
                if (L + k <= n && x > dat[L + k]) {
                    x -= dat[L + k]
                    L += k
                }
                if (R + k <= n && y > dat[R + k]) {
                    y -= dat[R + k]
                    R += k
                }
                k /= 2
            }
            println(a[R - 1] - if (0 < L) a[L - 1] else { 0L })
        }
    }
}

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