結果

問題 No.1439 Let's Compare!!!!
ユーザー convexineqconvexineq
提出日時 2021-03-26 21:46:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 767 ms / 2,000 ms
コード長 1,665 bytes
コンパイル時間 351 ms
コンパイル使用メモリ 82,356 KB
実行使用メモリ 104,704 KB
最終ジャッジ日時 2024-05-06 22:19:01
合計ジャッジ時間 9,313 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
52,224 KB
testcase_01 AC 42 ms
52,480 KB
testcase_02 AC 39 ms
52,736 KB
testcase_03 AC 40 ms
53,120 KB
testcase_04 AC 41 ms
52,992 KB
testcase_05 AC 49 ms
52,864 KB
testcase_06 AC 44 ms
52,608 KB
testcase_07 AC 124 ms
77,312 KB
testcase_08 AC 160 ms
77,452 KB
testcase_09 AC 122 ms
77,304 KB
testcase_10 AC 763 ms
101,864 KB
testcase_11 AC 764 ms
103,296 KB
testcase_12 AC 741 ms
102,592 KB
testcase_13 AC 760 ms
102,824 KB
testcase_14 AC 753 ms
102,784 KB
testcase_15 AC 767 ms
103,424 KB
testcase_16 AC 738 ms
104,316 KB
testcase_17 AC 736 ms
104,704 KB
testcase_18 AC 660 ms
102,660 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class BIT: #0-indexed
    __slots__ = ["size", "tree","depth","n0"]
    def __init__(self, n):
        self.size = n
        self.tree = [0]*(n+1)
        self.depth = n.bit_length()
        self.n0 = 1<<self.depth

    def get_sum(self, i): #a_0 + ... + a_{i} #閉区間
        s = 0; i += 1
        while i > 0:
            s += self.tree[i]
            i -= i & -i
        return s

    def range_sum(self,l,r): #a_l + ... + a_r 閉区間
        return self.get_sum(r) - self.get_sum(l-1) 

    def range_sum_larger(self,l): #a_l + ... (端まで)
        return self.get_sum(self.size-1) - (self.get_sum(l-1) if l else 0)
    
    def add(self, i, x):
        i += 1
        while i <= self.size:
            self.tree[i] += x
            i += i & -i

    def bisect_left(self,w):
        #和が w 以上になる最小の index
        #w が存在しない場合 self.size を返す
        if w <= 0: return 0
        x,k = 0,self.n0
        for _ in range(self.depth):
            k >>= 1
            if x+k <= self.size and self.tree[x+k] < w:
                w -= self.tree[x+k]
                x += k
        return x

n = int(input())
*s, = map(int,input())
*t, = map(int,input())
s.append(0)
t.append(0)

bit = BIT(n)
for i in range(n):
    if s[i] != t[i]: bit.add(i,1)

Q = int(input())
for _ in range(Q):
    c,x,y = input().split()
    i = int(x)-1
    y = int(y)
    eq = s[i]!=t[i]
    if c=="S":
        s[i] = y
    else:
        t[i] = y
    af = s[i]!=t[i]
    if eq != af:
        bit.add(i,af-eq)
    
    i = bit.bisect_left(1)
    if s[i] > t[i]:
        print(">")
    elif s[i] < t[i]:
        print("<")
    else:
        print("=")
0