結果
問題 | No.1965 Heavier |
ユーザー | AEn |
提出日時 | 2022-12-23 22:51:30 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 2,559 bytes |
コンパイル時間 | 452 ms |
コンパイル使用メモリ | 82,108 KB |
実行使用メモリ | 172,188 KB |
最終ジャッジ日時 | 2024-11-18 04:39:49 |
合計ジャッジ時間 | 29,148 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 43 ms
53,632 KB |
testcase_01 | AC | 46 ms
53,976 KB |
testcase_02 | AC | 42 ms
53,860 KB |
testcase_03 | AC | 42 ms
53,540 KB |
testcase_04 | AC | 42 ms
53,444 KB |
testcase_05 | AC | 42 ms
53,448 KB |
testcase_06 | AC | 1,250 ms
170,528 KB |
testcase_07 | AC | 1,203 ms
170,984 KB |
testcase_08 | AC | 1,226 ms
163,916 KB |
testcase_09 | AC | 1,772 ms
172,188 KB |
testcase_10 | AC | 1,790 ms
171,824 KB |
testcase_11 | AC | 1,722 ms
170,536 KB |
testcase_12 | AC | 42 ms
53,792 KB |
testcase_13 | AC | 42 ms
53,832 KB |
testcase_14 | AC | 42 ms
54,956 KB |
testcase_15 | AC | 1,809 ms
170,816 KB |
testcase_16 | AC | 1,809 ms
170,068 KB |
testcase_17 | AC | 1,256 ms
141,084 KB |
testcase_18 | TLE | - |
testcase_19 | AC | 1,201 ms
168,896 KB |
testcase_20 | AC | 1,339 ms
170,060 KB |
testcase_21 | AC | 1,205 ms
156,672 KB |
testcase_22 | AC | 1,132 ms
155,828 KB |
testcase_23 | AC | 829 ms
131,508 KB |
testcase_24 | AC | 944 ms
147,660 KB |
testcase_25 | AC | 705 ms
169,956 KB |
testcase_26 | AC | 705 ms
170,916 KB |
testcase_27 | AC | 752 ms
169,160 KB |
testcase_28 | AC | 748 ms
169,236 KB |
ソースコード
class SegmentTree(): """UnitXは単位元、fは区間で行いたい操作、initは自然数あるいは配列""" def __init__(self, init, unitX, f): self.f = f # (X, X) -> X self.unitX = unitX self.f = f if type(init) == int: self.n = init self.n = 1 << (self.n - 1).bit_length() self.X = [unitX] * (self.n * 2) else: self.n = len(init) self.n = 1 << (self.n - 1).bit_length() # len(init)が2の累乗ではない時UnitXで埋める self.X = [unitX] * self.n + init + [unitX] * (self.n - len(init)) # 配列のindex1まで埋める for i in range(self.n-1, 0, -1): self.X[i] = self.f(self.X[i*2], self.X[i*2|1]) def update(self, i, x): """0-indexedのi番目の値をxで置換""" # 最下段に移動 i += self.n self.X[i] = x # 上向に更新 i >>= 1 while i: self.X[i] = self.f(self.X[i*2], self.X[i*2|1]) i >>= 1 def getvalue(self, i): """元の配列のindexの値を見る""" return self.X[i + self.n] def getrange(self, l, r): """区間[l, r)でのfを行った値""" l += self.n r += self.n al = self.unitX ar = self.unitX while l < r: # 左端が右子ノードであれば if l & 1: al = self.f(al, self.X[l]) l += 1 # 右端が右子ノードであれば if r & 1: r -= 1 ar = self.f(self.X[r], ar) l >>= 1 r >>= 1 return self.f(al, ar) from heapq import heappop, heappush N = int(input()) A = list(map(int, input().split())) B = list(map(int, input().split())) c = [[i,B[i]] for i in range(N)] c.sort(key = lambda x:(x[1],-x[0])) d = {c[i][0]:i for i in range(N)} st1 = SegmentTree(N+3,-float('inf'),max) st2 = SegmentTree(N+3,-float('inf'),max) res,l,r = 0,0,0 seen = set() while l<N: while r<N: id = d[r] n1 = st1.getrange(id,N+1) n2 = st2.getrange(0,id) if n1<A[r]+B[r] and n2<A[r]-B[r]: st1.update(id,A[r]+B[r]) st2.update(id,A[r]-B[r]) r += 1 if r-l>1 and r not in seen: res += r-l-1 seen.add(r) else: break id = d[l] st1.update(id,-float('inf')) st2.update(id,-float('inf')) l += 1 print(res)