結果

問題 No.1703 Much Matching
ユーザー vwxyzvwxyz
提出日時 2021-10-08 22:24:43
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 705 bytes
コンパイル時間 279 ms
コンパイル使用メモリ 82,452 KB
実行使用メモリ 224,640 KB
最終ジャッジ日時 2024-07-23 04:58:01
合計ジャッジ時間 23,473 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
58,240 KB
testcase_01 AC 43 ms
52,608 KB
testcase_02 AC 39 ms
52,096 KB
testcase_03 AC 39 ms
53,120 KB
testcase_04 AC 44 ms
59,904 KB
testcase_05 AC 42 ms
58,112 KB
testcase_06 AC 1,113 ms
122,752 KB
testcase_07 AC 96 ms
78,208 KB
testcase_08 AC 1,178 ms
124,908 KB
testcase_09 AC 1,375 ms
133,104 KB
testcase_10 AC 198 ms
82,668 KB
testcase_11 AC 290 ms
86,604 KB
testcase_12 AC 91 ms
77,696 KB
testcase_13 AC 503 ms
95,720 KB
testcase_14 AC 67 ms
74,112 KB
testcase_15 AC 240 ms
84,852 KB
testcase_16 AC 712 ms
103,628 KB
testcase_17 AC 840 ms
109,316 KB
testcase_18 AC 64 ms
72,832 KB
testcase_19 AC 1,893 ms
155,704 KB
testcase_20 AC 227 ms
84,096 KB
testcase_21 TLE -
testcase_22 AC 782 ms
107,256 KB
testcase_23 AC 591 ms
100,076 KB
testcase_24 AC 63 ms
72,192 KB
testcase_25 AC 105 ms
77,952 KB
testcase_26 AC 381 ms
90,812 KB
testcase_27 AC 913 ms
112,264 KB
testcase_28 AC 1,809 ms
149,320 KB
testcase_29 AC 315 ms
86,864 KB
testcase_30 AC 459 ms
94,132 KB
testcase_31 AC 82 ms
76,928 KB
testcase_32 AC 910 ms
112,280 KB
testcase_33 AC 569 ms
98,988 KB
testcase_34 AC 91 ms
77,800 KB
testcase_35 AC 169 ms
81,536 KB
testcase_36 TLE -
testcase_37 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import bisect
import sys
readline=sys.stdin.readline

def LIS(lst,weakly=False,max_value=float('inf')):
    f=bisect.bisect_right if weakly else bisect.bisect_left
    N=len(lst)
    update=[None]*N
    dp=[max_value]*N
    for k,x in enumerate(lst):
        i=f(dp,x)
        dp[i]=x
        update[k]=(i,dp[i])
    n=bisect.bisect_left(dp,max_value)
    lis=[None]*n
    n-=1
    for i,x in update[::-1]:
        if i==n:
            lis[n]=x
            n-=1
    return lis

N,M,Q=map(int,readline().split())
AB=[]
for _ in range(Q):
    a,b=map(int,readline().split())
    AB.append((a,b))
AB.sort(key=lambda tpl:(tpl[0],-tpl[1]))
B=[b for a,b in AB]
inf=1<<60
ans=len(LIS(B,max_value=inf))
print(ans)
0