結果

問題 No.1703 Much Matching
ユーザー mkawa2mkawa2
提出日時 2021-10-08 22:23:42
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,288 bytes
コンパイル時間 297 ms
コンパイル使用メモリ 82,236 KB
実行使用メモリ 160,616 KB
最終ジャッジ日時 2024-07-23 04:56:15
合計ジャッジ時間 24,818 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
61,056 KB
testcase_01 AC 39 ms
52,720 KB
testcase_02 AC 37 ms
53,672 KB
testcase_03 AC 37 ms
53,312 KB
testcase_04 AC 45 ms
62,076 KB
testcase_05 AC 38 ms
54,700 KB
testcase_06 AC 1,229 ms
121,960 KB
testcase_07 AC 101 ms
78,688 KB
testcase_08 AC 1,253 ms
124,196 KB
testcase_09 AC 1,457 ms
131,856 KB
testcase_10 AC 216 ms
83,684 KB
testcase_11 AC 310 ms
88,100 KB
testcase_12 AC 102 ms
78,292 KB
testcase_13 AC 527 ms
97,996 KB
testcase_14 AC 72 ms
77,212 KB
testcase_15 AC 260 ms
85,424 KB
testcase_16 AC 778 ms
105,756 KB
testcase_17 AC 872 ms
111,108 KB
testcase_18 AC 73 ms
76,676 KB
testcase_19 TLE -
testcase_20 AC 243 ms
85,244 KB
testcase_21 TLE -
testcase_22 AC 849 ms
109,600 KB
testcase_23 AC 637 ms
101,020 KB
testcase_24 AC 70 ms
76,600 KB
testcase_25 AC 115 ms
79,124 KB
testcase_26 AC 409 ms
92,012 KB
testcase_27 AC 954 ms
113,448 KB
testcase_28 AC 1,890 ms
146,520 KB
testcase_29 AC 332 ms
88,852 KB
testcase_30 AC 493 ms
95,408 KB
testcase_31 AC 96 ms
78,024 KB
testcase_32 AC 992 ms
113,816 KB
testcase_33 AC 631 ms
100,476 KB
testcase_34 AC 100 ms
78,352 KB
testcase_35 AC 191 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