結果

問題 No.1703 Much Matching
ユーザー rlangevinrlangevin
提出日時 2023-03-01 12:35:25
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 1,187 bytes
コンパイル時間 322 ms
コンパイル使用メモリ 81,980 KB
実行使用メモリ 138,316 KB
最終ジャッジ日時 2024-09-16 11:22:36
合計ジャッジ時間 6,222 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,004 KB
testcase_01 AC 37 ms
52,752 KB
testcase_02 AC 36 ms
53,092 KB
testcase_03 AC 37 ms
53,380 KB
testcase_04 AC 51 ms
64,060 KB
testcase_05 AC 44 ms
61,240 KB
testcase_06 AC 272 ms
84,232 KB
testcase_07 RE -
testcase_08 AC 279 ms
84,804 KB
testcase_09 RE -
testcase_10 AC 108 ms
76,728 KB
testcase_11 RE -
testcase_12 AC 82 ms
76,384 KB
testcase_13 RE -
testcase_14 AC 77 ms
77,116 KB
testcase_15 RE -
testcase_16 AC 204 ms
79,856 KB
testcase_17 RE -
testcase_18 AC 71 ms
74,800 KB
testcase_19 RE -
testcase_20 AC 111 ms
77,164 KB
testcase_21 RE -
testcase_22 AC 214 ms
81,232 KB
testcase_23 RE -
testcase_24 AC 75 ms
76,980 KB
testcase_25 AC 89 ms
76,892 KB
testcase_26 AC 146 ms
77,888 KB
testcase_27 RE -
testcase_28 RE -
testcase_29 RE -
testcase_30 AC 156 ms
78,744 KB
testcase_31 RE -
testcase_32 AC 249 ms
82,032 KB
testcase_33 AC 179 ms
79,252 KB
testcase_34 AC 86 ms
76,488 KB
testcase_35 RE -
testcase_36 AC 866 ms
138,316 KB
testcase_37 AC 52 ms
67,736 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
readline = sys.stdin.readline

class SegmentTree:
    def __init__(self, size, f=max, default=0):
        self.size = 2**(size-1).bit_length() 
        self.default = default
        self.dat = [default]*(self.size*2) 
        self.f = f

    def update(self, i, x):
        i += self.size
        self.dat[i] = x
        while i > 0:
            i >>= 1
            self.dat[i] = self.f(self.dat[i*2], self.dat[i*2+1])

    def query(self, l, r):
        l += self.size
        r += self.size
        lres, rres = self.default, self.default
        while l < r:
            if l & 1:
                lres = self.f(lres, self.dat[l])
                l += 1

            if r & 1:
                r -= 1
                rres = self.f(self.dat[r], rres) 
            l >>= 1
            r >>= 1
        res = self.f(lres, rres)
        return res

N, M, Q = map(int, readline().split())
D = [[] for i in range(M)]
for i in range(Q):
    A, B = map(int, readline().split())
    A, B = A - 1, B - 1
    D[A].append(B)

dp = SegmentTree(M)
for i in range(M):
    for B in sorted(D[i], reverse=True):
        val = dp.query(0, B)
        dp.update(B, val + 1)

print(dp.query(0, M))
0