結果

問題 No.1703 Much Matching
ユーザー mkawa2mkawa2
提出日時 2021-10-08 22:28:30
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 827 bytes
コンパイル時間 158 ms
コンパイル使用メモリ 82,568 KB
実行使用メモリ 242,172 KB
最終ジャッジ日時 2024-07-23 05:08:47
合計ジャッジ時間 26,416 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
57,984 KB
testcase_01 AC 38 ms
52,352 KB
testcase_02 AC 41 ms
52,096 KB
testcase_03 AC 39 ms
52,352 KB
testcase_04 AC 46 ms
59,904 KB
testcase_05 AC 40 ms
52,992 KB
testcase_06 AC 1,288 ms
121,892 KB
testcase_07 AC 104 ms
78,720 KB
testcase_08 AC 1,371 ms
124,032 KB
testcase_09 AC 1,599 ms
131,840 KB
testcase_10 AC 229 ms
83,940 KB
testcase_11 AC 325 ms
88,192 KB
testcase_12 AC 105 ms
78,692 KB
testcase_13 AC 574 ms
97,744 KB
testcase_14 AC 76 ms
76,728 KB
testcase_15 AC 274 ms
85,480 KB
testcase_16 AC 835 ms
105,724 KB
testcase_17 AC 965 ms
110,464 KB
testcase_18 AC 77 ms
76,672 KB
testcase_19 TLE -
testcase_20 AC 265 ms
85,120 KB
testcase_21 TLE -
testcase_22 AC 921 ms
109,184 KB
testcase_23 AC 682 ms
100,992 KB
testcase_24 AC 75 ms
76,620 KB
testcase_25 AC 125 ms
79,360 KB
testcase_26 AC 448 ms
92,200 KB
testcase_27 AC 1,057 ms
113,536 KB
testcase_28 TLE -
testcase_29 AC 356 ms
89,344 KB
testcase_30 AC 528 ms
95,616 KB
testcase_31 AC 98 ms
77,900 KB
testcase_32 AC 1,078 ms
114,176 KB
testcase_33 AC 681 ms
100,188 KB
testcase_34 AC 107 ms
78,336 KB
testcase_35 AC 193 ms
83,144 KB
testcase_36 TLE -
testcase_37 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

sys.setrecursionlimit(200005)
def LI(): return list(map(int, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
md = 10**9+7

class BitMax:
    def __init__(self, n):
        self.inf = 10**9
        self.n = n
        self.table = [-self.inf]*(self.n+1)

    def update(self, i, x):
        i += 1
        while i <= self.n:
            if x > self.table[i]: self.table[i] = x
            i += i & -i

    def max(self, i):
        i += 1
        res = -self.inf
        while i > 0:
            if self.table[i] > res: res = self.table[i]
            i -= i & -i
        return res

n, m, q = LI()
ab = LLI(q)
ab.sort(key=lambda x: (x[0], -x[1]))

bit = BitMax(m+5)
bit.update(0, 0)

for a, b in ab:
    pre = bit.max(b-1)
    bit.update(b, pre+1)

print(bit.max(m+4))
0