結果

問題 No.1439 Let's Compare!!!!
ユーザー first_vilfirst_vil
提出日時 2021-03-10 14:52:42
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 1,281 ms / 2,000 ms
コード長 1,285 bytes
コンパイル時間 15,564 ms
コンパイル使用メモリ 441,792 KB
実行使用メモリ 104,600 KB
最終ジャッジ日時 2024-05-06 22:11:32
合計ジャッジ時間 30,784 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 341 ms
54,052 KB
testcase_01 AC 336 ms
54,076 KB
testcase_02 AC 338 ms
54,284 KB
testcase_03 AC 337 ms
54,300 KB
testcase_04 AC 342 ms
54,412 KB
testcase_05 AC 334 ms
54,388 KB
testcase_06 AC 328 ms
54,132 KB
testcase_07 AC 485 ms
58,428 KB
testcase_08 AC 493 ms
59,308 KB
testcase_09 AC 450 ms
57,800 KB
testcase_10 AC 1,276 ms
103,424 KB
testcase_11 AC 959 ms
88,876 KB
testcase_12 AC 905 ms
88,388 KB
testcase_13 AC 1,281 ms
104,600 KB
testcase_14 AC 985 ms
93,632 KB
testcase_15 AC 913 ms
88,352 KB
testcase_16 AC 931 ms
89,320 KB
testcase_17 AC 972 ms
87,952 KB
testcase_18 AC 833 ms
86,504 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

fun PrintWriter.solve() {
    val n = nextInt()
    var s = next().toCharArray()
    var t = next().toCharArray()

    var pq = PriorityQueue<Int>()
    for (i in 0 until n) if (s[i] != t[i]) pq.add(i)

    val q = nextInt()
    val ans = Array<String>(q) { "" }
    for(i in 0 until q) {
        val c = next()
        val x = nextInt() - 1
        if (c == "S") s[x] = ('0' + nextInt()).toChar()
        else t[x] = ('0' + nextInt()).toChar()
        if (s[x] != t[x]) pq.add(x)

        while (pq.isNotEmpty() && s[pq.peek()] == t[pq.peek()]) pq.remove()

        if (pq.isEmpty()) ans[i] = "="
        else {
            val k = pq.peek()
            if (s[k] < t[k]) ans[i] = "<"
            else ans[i] = ">"
        }
    }
    println(ans.joinToString("\n"))
}

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