結果

問題 No.1439 Let's Compare!!!!
ユーザー nasubi24nasubi24
提出日時 2021-03-27 09:14:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,190 ms / 2,000 ms
コード長 1,754 bytes
コンパイル時間 359 ms
コンパイル使用メモリ 82,168 KB
実行使用メモリ 120,652 KB
最終ジャッジ日時 2024-05-06 22:32:41
合計ジャッジ時間 9,674 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,224 KB
testcase_01 AC 45 ms
52,608 KB
testcase_02 AC 40 ms
52,352 KB
testcase_03 AC 40 ms
52,608 KB
testcase_04 AC 44 ms
57,856 KB
testcase_05 AC 40 ms
52,608 KB
testcase_06 AC 41 ms
52,608 KB
testcase_07 AC 139 ms
78,080 KB
testcase_08 AC 201 ms
80,024 KB
testcase_09 AC 129 ms
77,312 KB
testcase_10 AC 916 ms
116,112 KB
testcase_11 AC 1,190 ms
120,652 KB
testcase_12 AC 814 ms
114,880 KB
testcase_13 AC 830 ms
114,700 KB
testcase_14 AC 826 ms
115,708 KB
testcase_15 AC 839 ms
116,448 KB
testcase_16 AC 681 ms
111,212 KB
testcase_17 AC 659 ms
110,828 KB
testcase_18 AC 359 ms
106,664 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input=sys.stdin.readline
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+1)
b=[n+1]*(n+1)
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