結果

問題 No.1439 Let's Compare!!!!
ユーザー nasubi24nasubi24
提出日時 2021-03-27 09:13:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,544 ms / 2,000 ms
コード長 1,710 bytes
コンパイル時間 292 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 117,544 KB
最終ジャッジ日時 2024-11-29 08:07:30
合計ジャッジ時間 12,943 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,224 KB
testcase_01 AC 45 ms
52,224 KB
testcase_02 AC 40 ms
52,352 KB
testcase_03 AC 42 ms
52,480 KB
testcase_04 AC 45 ms
58,264 KB
testcase_05 AC 43 ms
52,736 KB
testcase_06 AC 40 ms
52,864 KB
testcase_07 AC 166 ms
78,836 KB
testcase_08 AC 240 ms
79,432 KB
testcase_09 AC 134 ms
77,568 KB
testcase_10 AC 1,242 ms
110,860 KB
testcase_11 AC 1,544 ms
117,544 KB
testcase_12 AC 1,188 ms
111,540 KB
testcase_13 AC 1,216 ms
111,044 KB
testcase_14 AC 1,206 ms
111,188 KB
testcase_15 AC 1,204 ms
114,544 KB
testcase_16 AC 1,050 ms
109,156 KB
testcase_17 AC 994 ms
107,892 KB
testcase_18 AC 703 ms
104,436 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class SegTree:
    def __init__(self, init_val, segfunc, ide_ele):
        n = len(init_val)
        self.segfunc = segfunc
        self.ide_ele = ide_ele
        self.num = 1 << (n - 1).bit_length()
        self.tree = [ide_ele] * 2 * self.num
        for i in range(n):
            self.tree[self.num + i] = init_val[i]
        for i in range(self.num - 1, 0, -1):
            self.tree[i] = self.segfunc(self.tree[2 * i], self.tree[2 * i + 1])
    def update(self, k, x):
        k += self.num
        self.tree[k] = x
        while k > 1:
            self.tree[k >> 1] = self.segfunc(self.tree[k], self.tree[k ^ 1])
            k >>= 1
    def query(self, l, r):
        res = self.ide_ele
        l += self.num
        r += self.num
        while l < r:
            if l & 1:
                res = self.segfunc(res, self.tree[l])
                l += 1
            if r & 1:
                res = self.segfunc(res, self.tree[r - 1])
            l >>= 1
            r >>= 1
        return res
n=int(input())
s=list(input())
t=list(input())
a=[n+1]*n
b=[n+1]*n
for i in range(n):
    if int(s[i])>int(t[i]):
        a[i]=i
    elif int(s[i])<int(t[i]):
        b[i]=i
def segf(x,y):return min(x,y)
segs=SegTree(a,segf,n+1)
segt=SegTree(b,segf,n+1)
for i in range(int(input())):
    c,x,y=input().split()
    x=int(x)-1
    if c=="S":s[x]=y
    else:t[x]=y
    if s[x]<t[x]:
        segt.update(x,x)
        segs.update(x,n+1)
    elif s[x]==t[x]:
        segt.update(x,n+1)
        segs.update(x,n+1)
    else:
        segt.update(x,n+1)
        segs.update(x,x)
    s1=segs.query(0,n)
    t1=segt.query(0,n)
    if s1<t1:
        print(">")
    elif s1==t1:
        print("=")
    else:
        print("<")
0