結果

問題 No.1703 Much Matching
ユーザー mink1618033mink1618033
提出日時 2021-10-09 19:25:27
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 499 bytes
コンパイル時間 690 ms
コンパイル使用メモリ 82,344 KB
実行使用メモリ 242,848 KB
最終ジャッジ日時 2024-09-13 06:59:16
合計ジャッジ時間 25,551 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
60,668 KB
testcase_01 AC 39 ms
52,776 KB
testcase_02 AC 40 ms
52,164 KB
testcase_03 AC 41 ms
53,460 KB
testcase_04 AC 48 ms
60,724 KB
testcase_05 AC 45 ms
58,600 KB
testcase_06 AC 1,146 ms
123,840 KB
testcase_07 AC 105 ms
78,200 KB
testcase_08 AC 1,204 ms
125,188 KB
testcase_09 AC 1,400 ms
133,196 KB
testcase_10 AC 206 ms
84,032 KB
testcase_11 AC 298 ms
87,668 KB
testcase_12 AC 99 ms
77,888 KB
testcase_13 AC 520 ms
97,412 KB
testcase_14 AC 73 ms
76,424 KB
testcase_15 AC 244 ms
85,796 KB
testcase_16 AC 727 ms
106,556 KB
testcase_17 AC 849 ms
111,680 KB
testcase_18 AC 76 ms
76,760 KB
testcase_19 AC 1,920 ms
151,112 KB
testcase_20 AC 240 ms
85,228 KB
testcase_21 TLE -
testcase_22 AC 817 ms
110,148 KB
testcase_23 AC 638 ms
101,140 KB
testcase_24 AC 70 ms
74,140 KB
testcase_25 AC 117 ms
79,264 KB
testcase_26 AC 392 ms
92,472 KB
testcase_27 AC 935 ms
114,604 KB
testcase_28 AC 1,850 ms
147,628 KB
testcase_29 AC 322 ms
89,508 KB
testcase_30 AC 462 ms
95,872 KB
testcase_31 AC 91 ms
77,516 KB
testcase_32 AC 904 ms
114,920 KB
testcase_33 AC 583 ms
101,076 KB
testcase_34 AC 101 ms
78,344 KB
testcase_35 AC 178 ms
82,652 KB
testcase_36 TLE -
testcase_37 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
import bisect

n,m,q = map(int,input().split())
ab = [list(map(int,input().split())) for _ in range(q)]

ab.sort(key=lambda x:(x[0],-x[1]))

def LIS(lst,weakly=False,max_value=float('inf')):
    f=bisect.bisect_right if weakly else bisect.bisect_left
    dp=[max_value]*(min(n,m)+1)
    for x in lst:
        i=f(dp,x)
        dp[i]=x
    res=bisect.bisect_left(dp,max_value)
    return res

inf=1<<30
bl = [b for a,b in ab]
ans=LIS(bl,max_value=inf)
print(ans)
0