結果
問題 | No.1439 Let's Compare!!!! |
ユーザー | ygd. |
提出日時 | 2021-03-26 21:58:18 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 1,410 ms / 2,000 ms |
コード長 | 2,215 bytes |
コンパイル時間 | 227 ms |
コンパイル使用メモリ | 82,216 KB |
実行使用メモリ | 87,680 KB |
最終ジャッジ日時 | 2024-05-06 22:23:43 |
合計ジャッジ時間 | 13,575 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 37 ms
52,344 KB |
testcase_01 | AC | 36 ms
54,064 KB |
testcase_02 | AC | 37 ms
52,732 KB |
testcase_03 | AC | 38 ms
54,644 KB |
testcase_04 | AC | 44 ms
61,032 KB |
testcase_05 | AC | 37 ms
55,356 KB |
testcase_06 | AC | 35 ms
54,236 KB |
testcase_07 | AC | 139 ms
77,776 KB |
testcase_08 | AC | 162 ms
78,384 KB |
testcase_09 | AC | 121 ms
77,208 KB |
testcase_10 | AC | 1,128 ms
87,304 KB |
testcase_11 | AC | 1,340 ms
87,036 KB |
testcase_12 | AC | 1,284 ms
86,876 KB |
testcase_13 | AC | 1,179 ms
87,412 KB |
testcase_14 | AC | 1,161 ms
87,144 KB |
testcase_15 | AC | 1,341 ms
87,128 KB |
testcase_16 | AC | 1,322 ms
86,924 KB |
testcase_17 | AC | 1,410 ms
87,680 KB |
testcase_18 | AC | 852 ms
87,288 KB |
ソースコード
def segfunc(x,y): return x+y class SegmentTree(object): def __init__(self, A, dot, unit): n = 1 << (len(A) - 1).bit_length() tree = [unit] * (2 * n) for i, v in enumerate(A): tree[i + n] = v for i in range(n - 1, 0, -1): tree[i] = dot(tree[i << 1], tree[i << 1 | 1]) self._n = n self._tree = tree self._dot = dot self._unit = unit def __getitem__(self, i): return self._tree[i + self._n] def update(self, i, v): i += self._n self._tree[i] = v while i != 1: i >>= 1 self._tree[i] = self._dot(self._tree[i << 1], self._tree[i << 1 | 1]) def add(self, i, v): self.update(i, self[i] + v) def sum(self, l, r): #これで[l,r)から取り出す。 l += self._n r += self._n l_val = r_val = self._unit while l < r: if l & 1: l_val = self._dot(l_val, self._tree[l]) l += 1 if r & 1: r -= 1 r_val = self._dot(self._tree[r], r_val) l >>= 1 r >>= 1 return self._dot(l_val, r_val) N = int(input()) S = str(input()); S = [int(s) for s in S] #大きい1 T = str(input()); T = [int(t) for t in T] #大きい2 Tree = SegmentTree([0]*(N+1),segfunc,0) for i in range(N): keta = i+1 if S[i] > T[i]: Tree.update(keta,1) elif T[i] > S[i]: Tree.update(keta,2) Q = int(input()) for _ in range(Q): Flag, x, y = input().split() x = int(x) - 1 #0index y = int(y) if Flag == "S": S[x] = y else: T[x] = y #print(S,T) if S[x] > T[x]: Tree.update(x+1,1) elif T[x] > S[x]: Tree.update(x+1,2) else: Tree.update(x+1,0) if Tree.sum(0,N+1) == 0: print("=") else: ok = 1 ng = N+1 while abs(ok-ng) > 1: mid = (ok+ng)//2 if Tree.sum(0,mid) == 0: ok = mid else: ng = mid #print(ok,Tree.__getitem__(ok)) if Tree.__getitem__(ok) == 1: print(">") else: print("<")