結果

問題 No.1439 Let's Compare!!!!
ユーザー nephrologistnephrologist
提出日時 2021-03-26 21:54:53
言語 PyPy3
(7.3.15)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 2,368 bytes
コンパイル時間 380 ms
コンパイル使用メモリ 82,108 KB
実行使用メモリ 121,584 KB
最終ジャッジ日時 2024-11-28 23:00:41
合計ジャッジ時間 14,201 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
52,880 KB
testcase_01 AC 43 ms
54,736 KB
testcase_02 AC 44 ms
52,836 KB
testcase_03 AC 43 ms
53,304 KB
testcase_04 AC 43 ms
55,096 KB
testcase_05 AC 42 ms
53,560 KB
testcase_06 AC 40 ms
53,808 KB
testcase_07 AC 188 ms
78,056 KB
testcase_08 AC 245 ms
79,264 KB
testcase_09 AC 150 ms
77,280 KB
testcase_10 AC 1,183 ms
110,592 KB
testcase_11 AC 1,306 ms
114,408 KB
testcase_12 AC 1,002 ms
107,144 KB
testcase_13 AC 1,226 ms
112,868 KB
testcase_14 AC 1,803 ms
114,564 KB
testcase_15 AC 1,415 ms
121,584 KB
testcase_16 AC 1,047 ms
113,044 KB
testcase_17 TLE -
testcase_18 AC 551 ms
101,896 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heappop, heappush

n = int(input())
s = list(map(int, list(input())))
t = list(map(int, list(input())))
q = int(input())


s_bigger = []

s_bigger_del = []
t_bigger = []
t_bigger_del = []


for i in range(n):
    if s[i] > t[i]:
        heappush(s_bigger, i * 10 + s[i])
    elif s[i] < t[i]:
        heappush(t_bigger, i * 10 + t[i])

for _ in range(q):
    # delのものを消す
    while s_bigger_del:
        if s_bigger[0] == s_bigger_del[0]:
            heappop(s_bigger)
            heappop(s_bigger_del)
        else:
            break
    while t_bigger_del:
        if t_bigger[0] == t_bigger_del[0]:
            heappop(t_bigger)
            heappop(t_bigger_del)
        else:
            break
    c, x, y = input().split()
    x = int(x)
    y = int(y)
    if c == "S":
        if s[x - 1] > t[x - 1]:
            heappush(s_bigger_del, (x - 1) * 10 + s[x - 1])
        elif s[x - 1] < t[x - 1]:
            heappush(t_bigger_del, (x - 1) * 10 + t[x - 1])
        s[x - 1] = y
        if s[x - 1] > t[x - 1]:
            heappush(s_bigger, (x - 1) * 10 + s[x - 1])
        elif t[x - 1] > s[x - 1]:
            heappush(t_bigger, (x - 1) * 10 + t[x - 1])
    else:
        if s[x - 1] > t[x - 1]:
            heappush(s_bigger_del, (x - 1) * 10 + s[x - 1])
        elif s[x - 1] < t[x - 1]:
            heappush(t_bigger_del, (x - 1) * 10 + t[x - 1])
        t[x - 1] = y
        if s[x - 1] > t[x - 1]:
            heappush(s_bigger, (x - 1) * 10 + s[x - 1])
        elif t[x - 1] > s[x - 1]:
            heappush(t_bigger, (x - 1) * 10 + t[x - 1])
    while s_bigger_del:
        if s_bigger[0] == s_bigger_del[0]:
            heappop(s_bigger)
            heappop(s_bigger_del)
        else:
            break
    while t_bigger_del:
        if t_bigger[0] == t_bigger_del[0]:
            heappop(t_bigger)
            heappop(t_bigger_del)
        else:
            break

    if not s_bigger and not t_bigger:
        print("=")
    elif not s_bigger:
        print("<")
    elif not t_bigger:
        print(">")
    else:
        ttt = t_bigger[0] // 10
        sss = s_bigger[0] // 10
        if sss < ttt:
            print(">")
        else:
            print("<")
    # print("s", "".join(map(str, s)))
    # print("t", "".join(map(str, t)))
    # print("s", s_bigger, s_bigger_del)
    # print("t", t_bigger, t_bigger_del)
0