結果

問題 No.1439 Let's Compare!!!!
ユーザー 👑 rin204rin204
提出日時 2022-01-18 05:14:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 927 ms / 2,000 ms
コード長 2,159 bytes
コンパイル時間 215 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 101,248 KB
最終ジャッジ日時 2024-05-02 19:17:14
合計ジャッジ時間 10,361 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,096 KB
testcase_01 AC 41 ms
52,224 KB
testcase_02 AC 40 ms
52,224 KB
testcase_03 AC 45 ms
52,608 KB
testcase_04 AC 43 ms
53,504 KB
testcase_05 AC 41 ms
52,480 KB
testcase_06 AC 39 ms
52,352 KB
testcase_07 AC 150 ms
77,696 KB
testcase_08 AC 179 ms
77,532 KB
testcase_09 AC 131 ms
77,312 KB
testcase_10 AC 841 ms
101,120 KB
testcase_11 AC 850 ms
100,992 KB
testcase_12 AC 786 ms
101,120 KB
testcase_13 AC 855 ms
100,864 KB
testcase_14 AC 927 ms
100,736 KB
testcase_15 AC 831 ms
101,120 KB
testcase_16 AC 783 ms
100,808 KB
testcase_17 AC 815 ms
101,248 KB
testcase_18 AC 640 ms
100,736 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class SegTree():
    def __init__(self, n, e, ope, lst=[]):
        self.N0 = 2 ** (n - 1).bit_length()
        self.e = e
        self.ope = ope
        self.data = [e] * (2 * self.N0)
        if lst:
            for i in range(n):
                self.data[self.N0 + i] = lst[i]
            for i in range(self.N0 - 1, 0, -1):
                self.data[i] = self.ope(self.data[2 * i], self.data[2 * i + 1])
    
    def f5(self):
        for i in range(self.N0 - 1, 0, -1):
            self.data[i] = self.ope(self.data[2 * i], self.data[2 * i + 1])
                
    def update(self, i, x): #a_iの値をxに更新
        i += self.N0
        self.data[i] = x
        while i > 1:
            i >>= 1
            self.data[i] = self.ope(self.data[2 * i], self.data[2 * i + 1])
    
    def add(self, i, x):
        self.update(i, x + self.get(i))
    
    def query(self, l, r): #区間[l, r)での演算結果
        if r <= l:
            return self.e
            
        res = self.e
        l += self.N0
        r += self.N0
        while l < r:
            if l & 1:
                res = self.ope(res, self.data[l])
                l += 1
            if r & 1:
                r -= 1
                res = self.ope(self.data[r], res)
            l >>= 1
            r >>= 1
        return res
            
    
    def get(self, i): #a_iの値を返す
        return self.data[self.N0 + i]

e = 0
def ope(x, y):
    if x * y == 0:
        return x + y
    else:
        return x

n = int(input())
S = list(map(int, input()))
T = list(map(int, input()))
lst = []
for s, t in zip(S, T):
    if s < t:
        lst.append(1)
    elif s == t:
        lst.append(0)
    else:
        lst.append(-1)

seg = SegTree(n, e, ope, lst)
q = int(input())
for _ in range(q):
    c, x, y = input().split()
    x = int(x) - 1
    y = int(y)
    if c == "T":
        T[x] = y
    else:
        S[x] = y
    if T[x] > S[x]:
        seg.update(x, 1)
    elif T[x] == S[x]:
        seg.update(x, 0)
    else:
        seg.update(x, -1)
    ans = seg.query(0, n)
    if ans == 1:
        print("<")
    elif ans == 0:
        print("=")
    else:
        print(">")
0