結果

問題 No.1703 Much Matching
ユーザー mkawa2mkawa2
提出日時 2021-10-08 22:28:07
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 827 bytes
コンパイル時間 370 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 134,912 KB
最終ジャッジ日時 2024-07-23 05:08:05
合計ジャッジ時間 15,555 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
16,256 KB
testcase_01 AC 30 ms
10,624 KB
testcase_02 AC 30 ms
10,624 KB
testcase_03 AC 31 ms
10,752 KB
testcase_04 AC 31 ms
10,752 KB
testcase_05 AC 31 ms
10,624 KB
testcase_06 AC 1,756 ms
86,560 KB
testcase_07 AC 83 ms
14,464 KB
testcase_08 AC 1,873 ms
92,884 KB
testcase_09 TLE -
testcase_10 AC 245 ms
22,492 KB
testcase_11 AC 392 ms
29,812 KB
testcase_12 AC 83 ms
13,824 KB
testcase_13 AC 707 ms
45,540 KB
testcase_14 AC 46 ms
11,520 KB
testcase_15 AC 317 ms
26,692 KB
testcase_16 AC 1,062 ms
58,100 KB
testcase_17 AC 1,233 ms
66,576 KB
testcase_18 AC 42 ms
11,392 KB
testcase_19 TLE -
testcase_20 AC 295 ms
24,824 KB
testcase_21 TLE -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
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