結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,096 KB
testcase_01 AC 41 ms
52,608 KB
testcase_02 AC 40 ms
52,224 KB
testcase_03 AC 43 ms
52,992 KB
testcase_04 AC 47 ms
58,496 KB
testcase_05 AC 42 ms
52,992 KB
testcase_06 AC 39 ms
52,480 KB
testcase_07 AC 174 ms
78,428 KB
testcase_08 AC 207 ms
79,184 KB
testcase_09 AC 129 ms
77,312 KB
testcase_10 AC 1,098 ms
111,236 KB
testcase_11 AC 1,392 ms
117,720 KB
testcase_12 AC 1,115 ms
111,804 KB
testcase_13 AC 1,177 ms
110,996 KB
testcase_14 AC 1,140 ms
111,104 KB
testcase_15 AC 1,085 ms
114,536 KB
testcase_16 AC 990 ms
108,776 KB
testcase_17 AC 988 ms
107,892 KB
testcase_18 AC 677 ms
105,076 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