結果
問題 | No.1703 Much Matching |
ユーザー | ygd. |
提出日時 | 2021-10-10 11:26:21 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,808 bytes |
コンパイル時間 | 263 ms |
コンパイル使用メモリ | 82,208 KB |
実行使用メモリ | 196,480 KB |
最終ジャッジ日時 | 2024-09-14 05:43:37 |
合計ジャッジ時間 | 23,354 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 42 ms
58,112 KB |
testcase_01 | AC | 37 ms
52,608 KB |
testcase_02 | AC | 38 ms
52,080 KB |
testcase_03 | AC | 41 ms
53,248 KB |
testcase_04 | WA | - |
testcase_05 | AC | 47 ms
60,032 KB |
testcase_06 | WA | - |
testcase_07 | AC | 109 ms
77,312 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | AC | 747 ms
94,676 KB |
testcase_18 | WA | - |
testcase_19 | AC | 1,625 ms
120,032 KB |
testcase_20 | WA | - |
testcase_21 | AC | 1,936 ms
126,040 KB |
testcase_22 | WA | - |
testcase_23 | AC | 571 ms
92,288 KB |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | AC | 817 ms
97,124 KB |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | TLE | - |
testcase_37 | -- | - |
ソースコード
import sys #input = sys.stdin.readline input = sys.stdin.buffer.readline 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) def main(): N,M,Q = map(int,input().split()) G = [[] for _ in range(Q)] L = [] for i in range(Q): a,b = map(int,input().split()) #a -= 1; b -= 1 L.append((a,b)) #man,woman,index L.sort() Tree = SegmentTree([0]*(M+1),max,0) #womanがyの時の最大値 for x,y in L: val = max(Tree.sum(0,y) + 1, Tree.__getitem__(y)) #print(val) Tree.update(y,val) ans = 0 for i in range(M+1): ans = max(ans,Tree.__getitem__(i)) print(ans) if __name__ == '__main__': main()