結果

問題 No.1703 Much Matching
ユーザー mink1618033mink1618033
提出日時 2021-10-09 19:27:12
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 502 bytes
コンパイル時間 290 ms
コンパイル使用メモリ 82,340 KB
実行使用メモリ 166,312 KB
最終ジャッジ日時 2024-09-13 07:01:30
合計ジャッジ時間 24,352 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
59,972 KB
testcase_01 AC 40 ms
52,752 KB
testcase_02 AC 40 ms
52,620 KB
testcase_03 AC 40 ms
52,736 KB
testcase_04 AC 46 ms
61,424 KB
testcase_05 AC 43 ms
58,728 KB
testcase_06 AC 1,167 ms
124,000 KB
testcase_07 AC 105 ms
78,300 KB
testcase_08 AC 1,216 ms
125,044 KB
testcase_09 AC 1,428 ms
132,808 KB
testcase_10 AC 208 ms
83,996 KB
testcase_11 AC 296 ms
88,416 KB
testcase_12 AC 100 ms
78,452 KB
testcase_13 AC 518 ms
97,768 KB
testcase_14 AC 75 ms
76,916 KB
testcase_15 AC 246 ms
85,572 KB
testcase_16 AC 748 ms
107,364 KB
testcase_17 AC 862 ms
112,384 KB
testcase_18 AC 76 ms
76,664 KB
testcase_19 AC 1,912 ms
150,928 KB
testcase_20 AC 236 ms
85,472 KB
testcase_21 TLE -
testcase_22 AC 805 ms
110,224 KB
testcase_23 AC 610 ms
101,384 KB
testcase_24 AC 68 ms
74,592 KB
testcase_25 AC 116 ms
78,928 KB
testcase_26 AC 394 ms
92,680 KB
testcase_27 AC 912 ms
114,704 KB
testcase_28 AC 1,863 ms
147,960 KB
testcase_29 AC 321 ms
88,920 KB
testcase_30 AC 477 ms
95,812 KB
testcase_31 AC 92 ms
77,524 KB
testcase_32 AC 938 ms
114,776 KB
testcase_33 AC 606 ms
101,424 KB
testcase_34 AC 102 ms
78,508 KB
testcase_35 AC 183 ms
82,712 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=10**18)
print(ans)
0