結果
問題 | No.1439 Let's Compare!!!! |
ユーザー | googol_S0 |
提出日時 | 2021-03-26 21:59:06 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 1,133 ms / 2,000 ms |
コード長 | 1,287 bytes |
コンパイル時間 | 316 ms |
コンパイル使用メモリ | 82,324 KB |
実行使用メモリ | 141,756 KB |
最終ジャッジ日時 | 2024-05-06 22:24:10 |
合計ジャッジ時間 | 11,861 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 43 ms
54,284 KB |
testcase_01 | AC | 49 ms
55,136 KB |
testcase_02 | AC | 46 ms
54,232 KB |
testcase_03 | AC | 45 ms
55,448 KB |
testcase_04 | AC | 47 ms
55,628 KB |
testcase_05 | AC | 45 ms
55,568 KB |
testcase_06 | AC | 43 ms
55,140 KB |
testcase_07 | AC | 158 ms
78,620 KB |
testcase_08 | AC | 178 ms
78,748 KB |
testcase_09 | AC | 150 ms
78,580 KB |
testcase_10 | AC | 1,093 ms
141,272 KB |
testcase_11 | AC | 1,133 ms
141,332 KB |
testcase_12 | AC | 1,045 ms
140,896 KB |
testcase_13 | AC | 1,089 ms
141,596 KB |
testcase_14 | AC | 1,070 ms
141,560 KB |
testcase_15 | AC | 1,017 ms
141,548 KB |
testcase_16 | AC | 894 ms
141,696 KB |
testcase_17 | AC | 908 ms
141,756 KB |
testcase_18 | AC | 900 ms
141,736 KB |
ソースコード
from copy import * def init(N,node,A,unit,func): n=1 while n<N: n<<=1 for i in range(n*2-1): if len(node)<=i: node.append(deepcopy(unit)) else: node[i]=deepcopy(unit) for i in range(len(A)): node[n-1+i]=deepcopy(A[i]) for i in range(n-2,-1,-1): node[i]=func(node[(i<<1)+1],node[(i<<1)+2]) node.append(func) node.append(unit) node.append(n) def upd(node,x,a): y=node[-1]+x node[y-1]=a while y>1: y=y>>1 node[y-1]=node[-3](node[(y<<1)-1],node[y<<1]) def query(node,l,r): x,y=l,r z=node[-1]-1 rr=deepcopy(node[-2]) rl=deepcopy(node[-2]) while True: if x==y: return node[-3](rl,rr) if x&1: rl=node[-3](rl,node[x+z]) x+=1 if y&1: rr=node[-3](node[y+z-1],rr) if z==0: return node[-3](rl,rr) x>>=1 y>>=1 z>>=1 N=int(input()) S=list(input()) T=list(input()) for i in range(N): S[i]=int(S[i]) T[i]=int(T[i]) seg=[] def f(x,y): if x==0: return y else: return x init(N,seg,[S[i]-T[i] for i in range(N)],0,f) Q=int(input()) for i in range(Q): c,x,y=input().split() x,y=int(x)-1,int(y) if c=='S': S[x]=y else: T[x]=y upd(seg,x,S[x]-T[x]) A=query(seg,0,N) if A==0: print('=') elif A<0: print('<') else: print('>')