結果
問題 | No.1439 Let's Compare!!!! |
ユーザー | persimmon-persimmon |
提出日時 | 2021-06-10 09:27:09 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,266 bytes |
コンパイル時間 | 151 ms |
コンパイル使用メモリ | 82,320 KB |
実行使用メモリ | 92,060 KB |
最終ジャッジ日時 | 2024-11-29 14:45:27 |
合計ジャッジ時間 | 2,481 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 41 ms
52,332 KB |
testcase_01 | AC | 43 ms
52,864 KB |
testcase_02 | AC | 39 ms
52,224 KB |
testcase_03 | WA | - |
testcase_04 | AC | 45 ms
58,368 KB |
testcase_05 | AC | 42 ms
52,608 KB |
testcase_06 | AC | 40 ms
52,736 KB |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | WA | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
ソースコード
# 0-indexed binary indexed tree class BIT: def __init__(self, n): self.n = n self.data = [0]*(n+1) self.el = [0]*(n+1) # sum of [0,i) sum(a[:i]) def sum(self, i): if i==0:return 0 s = 0 while i > 0: s += self.data[i] i -= i & -i return s def add(self, i, x): i+=1 self.el[i] += x while i <= self.n: self.data[i] += x i += i & -i # sum of [l,r) sum(a[l:r]) def sumlr(self, i, j): return self.sum(j) - self.sum(i) # a[i] def get(self,i): i+=1 return self.el[i] n=int(input()) s=input() sary=list(map(int,list(s))) s=int(s) t=input() tary=list(map(int,list(t))) t=int(t) q=int(input()) query=[input() for _ in range(q)] dary=[x-y for x,y in zip(sary,tary)] bit=BIT(n) for i,x in enumerate(dary): bit.add(i,x) for tmp in query: c,x,y=tmp.split() x=int(x) y=int(y) pre=dary[x-1] if c=="S": sary[x-1]=y else: tary[x-1]=y dary[x-1]=sary[x-1]-tary[x-1] bit.add(x-1,-pre+dary[x-1]) l,r=0,n+1 while r-l>1: x=(r+l)//2 if bit.sum(x)!=0: l,r=l,x else: l,r=x,r ans="=" for j in range(l-2,l+2): if n<l:break tmp=bit.sum(j) if tmp==0:continue if tmp<0: ans="<" else: ans=">" break print(ans)