結果

問題 No.2794 I Love EDPC-T
ユーザー 箱星箱星
提出日時 2023-01-31 09:55:43
言語 Kotlin
(1.9.23)
結果
TLE  
実行時間 -
コード長 3,140 bytes
コンパイル時間 18,858 ms
コンパイル使用メモリ 455,532 KB
実行使用メモリ 250,144 KB
最終ジャッジ日時 2024-12-20 21:19:20
合計ジャッジ時間 109,826 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 319 ms
61,948 KB
testcase_01 AC 314 ms
96,528 KB
testcase_02 AC 309 ms
65,196 KB
testcase_03 AC 310 ms
239,976 KB
testcase_04 AC 313 ms
61,936 KB
testcase_05 AC 318 ms
58,452 KB
testcase_06 AC 486 ms
182,228 KB
testcase_07 AC 576 ms
92,196 KB
testcase_08 AC 664 ms
127,192 KB
testcase_09 AC 322 ms
65,256 KB
testcase_10 AC 325 ms
241,368 KB
testcase_11 AC 321 ms
61,872 KB
testcase_12 AC 307 ms
96,856 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 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 AC 389 ms
62,628 KB
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
testcase_33 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.PrintWriter
import java.util.*
import kotlin.math.*

fun PrintWriter.solve() {
    val n = nextInt()
    val s = nextLine()
    if (s.all { it == '>' }) {
        println(0)
        return
    }
    var dp = Array(n) { Array(2) { ModInt(0) } }
    dp[0][0] = ModInt(1)
    for (i in 0 until n - 1) {
        val newdp = Array(n) { Array(2) { ModInt(0) } }
        for (j in 0..i) {
            if (s[i] == '>') {
                newdp[j][0] += dp[j][0] + dp[j][1]
            }
            newdp[j + 1][1] += dp[j][0]
        }
        dp = newdp
    }
    val c = Array(n + 1) { i -> binomSimple(2L * i, i.toLong()) / ModInt(i + 1) }
    var ans = ModInt(0)
    val p = s.count { it == '<' } % 2
    for (i in 0 until n) {
        val num = c[n - i] * (dp[i][0] + dp[i][1])
        if (i % 2 == p) {
            ans += num
        } else {
            ans -= num
        }
    }
    println(ans)
}

// region ModInt
class ModInt(x: Long) {
    companion object {
        //const val MOD = 1000000007L
        const val MOD = 998244353L
    }

    constructor(y: Int) : this(y.toLong())

    val x = (x % MOD + MOD) % MOD

    operator fun plus(other: ModInt): ModInt {
        return ModInt(x + other.x)
    }

    operator fun minus(other: ModInt): ModInt {
        return ModInt(x - other.x)
    }

    operator fun times(other: ModInt): ModInt {
        return ModInt(x * other.x)
    }

    operator fun div(other: ModInt): ModInt {
        return this * other.inv()
    }

    fun pow(exp: Long): ModInt {
        if (exp == 0L) return ModInt(1L)
        var a = pow(exp shr 1)
        a *= a
        if (exp and 1L == 0L) return a
        return this * a
    }

    fun inv(): ModInt {
        return this.pow(MOD - 2)
    }

    override fun equals(other: Any?): Boolean {
        if (this === other) return true
        if (javaClass != other?.javaClass) return false

        other as ModInt

        if (x != other.x) return false

        return true
    }

    override fun hashCode(): Int {
        return x.hashCode()
    }

    override fun toString(): String {
        return "$x"
    }
}

fun Long.toModInt(): ModInt {
    return ModInt(this)
}

fun Int.toModInt(): ModInt {
    return ModInt(this)
}

fun binomSimple(n: Long, k: Long): ModInt {
    var numer = ModInt(1)
    var denom = ModInt(1)
    for (i in 0 until k) {
        numer *= ModInt(n - i)
        denom *= ModInt(k - i)
    }
    return numer / denom
}
// endregion

fun main() {
    Thread(null, {
        val writer = PrintWriter(System.out, false)
        writer.solve()
        writer.flush()
    }, "solve", abs(1L.shl(26)))
        .apply { setUncaughtExceptionHandler { _, e -> e.printStackTrace(); kotlin.system.exitProcess(1) } }
        .apply { start() }.join()
}

// 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