結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
60,444 KB
testcase_01 AC 39 ms
52,656 KB
testcase_02 AC 38 ms
52,996 KB
testcase_03 AC 40 ms
53,944 KB
testcase_04 AC 48 ms
60,920 KB
testcase_05 AC 41 ms
54,728 KB
testcase_06 AC 1,389 ms
121,808 KB
testcase_07 AC 110 ms
79,028 KB
testcase_08 AC 1,420 ms
124,016 KB
testcase_09 AC 1,595 ms
131,900 KB
testcase_10 AC 229 ms
83,624 KB
testcase_11 AC 326 ms
88,180 KB
testcase_12 AC 108 ms
78,908 KB
testcase_13 AC 573 ms
97,448 KB
testcase_14 AC 78 ms
77,224 KB
testcase_15 AC 279 ms
85,948 KB
testcase_16 AC 845 ms
105,704 KB
testcase_17 AC 954 ms
111,092 KB
testcase_18 AC 79 ms
76,808 KB
testcase_19 TLE -
testcase_20 AC 262 ms
85,300 KB
testcase_21 TLE -
testcase_22 AC 911 ms
109,448 KB
testcase_23 AC 672 ms
100,732 KB
testcase_24 AC 76 ms
76,640 KB
testcase_25 AC 126 ms
79,268 KB
testcase_26 AC 438 ms
92,144 KB
testcase_27 AC 1,031 ms
113,528 KB
testcase_28 TLE -
testcase_29 AC 360 ms
88,988 KB
testcase_30 AC 531 ms
95,352 KB
testcase_31 AC 99 ms
77,924 KB
testcase_32 AC 1,067 ms
113,980 KB
testcase_33 AC 678 ms
100,264 KB
testcase_34 AC 111 ms
78,948 KB
testcase_35 AC 202 ms
82,788 KB
testcase_36 TLE -
testcase_37 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

sys.setrecursionlimit(200005)
int1 = lambda x: int(x)-1
p2D = lambda x: print(*x, sep="\n")
def II(): return int(sys.stdin.readline())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LI1(): return list(map(int1, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def LLI1(rows_number): return [LI1() for _ in range(rows_number)]
def SI(): return sys.stdin.readline().rstrip()
# dij = [(0, 1), (-1, 0), (0, -1), (1, 0)]
dij = [(0, 1), (1, 0), (0, -1), (-1, 0)]
# dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)]
inf = 10**19
# md = 998244353
md = 10**9+7

class BitMax:
    def __init__(self, n):
        self.inf = 10**16
        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