結果

問題 No.1439 Let's Compare!!!!
ユーザー lloyzlloyz
提出日時 2022-02-15 19:07:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 780 ms / 2,000 ms
コード長 911 bytes
コンパイル時間 173 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 140,120 KB
最終ジャッジ日時 2024-06-29 07:08:00
合計ジャッジ時間 8,588 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
52,352 KB
testcase_01 AC 43 ms
52,480 KB
testcase_02 AC 43 ms
52,352 KB
testcase_03 AC 44 ms
52,480 KB
testcase_04 AC 44 ms
53,376 KB
testcase_05 AC 44 ms
52,608 KB
testcase_06 AC 42 ms
52,480 KB
testcase_07 AC 136 ms
77,568 KB
testcase_08 AC 154 ms
77,952 KB
testcase_09 AC 121 ms
77,184 KB
testcase_10 AC 780 ms
139,860 KB
testcase_11 AC 735 ms
102,652 KB
testcase_12 AC 681 ms
101,376 KB
testcase_13 AC 777 ms
140,120 KB
testcase_14 AC 774 ms
139,864 KB
testcase_15 AC 690 ms
101,376 KB
testcase_16 AC 666 ms
101,376 KB
testcase_17 AC 739 ms
101,760 KB
testcase_18 AC 575 ms
101,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heappop, heappush

n = int(input())
S = list(map(int, list(input())))
T = list(map(int, list(input())))
op_idx = n
Heap = []
different_num_set = set()
for i in range(n):
    if S[i] != T[i]:
        heappush(Heap, i)
        different_num_set.add(i)

q = int(input())
for _ in range(q):
    c, x, y = input().split()
    x = int(x)
    y = int(y)
    x -= 1

    pre_same = S[x] == T[x]
    if c == 'S':
        S[x] = y
    elif c == 'T':
        T[x] = y
    curr_same = S[x] == T[x]
    if curr_same != pre_same:
        if pre_same:
            heappush(Heap, x)
            different_num_set.add(x)
        else:
            different_num_set.remove(x)
    
    while Heap and Heap[0] not in different_num_set:
        heappop(Heap)
    if len(Heap) == 0:
        print('=')
        continue
    d = Heap[0]
    if S[d] > T[d]:
        print('>')
    elif S[d] < T[d]:
        print('<')
0