結果

問題 No.1703 Much Matching
ユーザー vwxyzvwxyz
提出日時 2021-10-08 22:27:15
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 559 bytes
コンパイル時間 284 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 170,952 KB
最終ジャッジ日時 2024-07-23 05:04:46
合計ジャッジ時間 21,236 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
57,472 KB
testcase_01 AC 38 ms
52,096 KB
testcase_02 AC 39 ms
52,096 KB
testcase_03 AC 42 ms
52,608 KB
testcase_04 AC 45 ms
59,136 KB
testcase_05 AC 42 ms
58,496 KB
testcase_06 AC 941 ms
105,864 KB
testcase_07 AC 90 ms
76,800 KB
testcase_08 AC 1,002 ms
107,024 KB
testcase_09 AC 1,156 ms
113,444 KB
testcase_10 AC 180 ms
80,140 KB
testcase_11 AC 250 ms
82,124 KB
testcase_12 AC 86 ms
77,452 KB
testcase_13 AC 437 ms
88,096 KB
testcase_14 AC 62 ms
73,600 KB
testcase_15 AC 210 ms
81,084 KB
testcase_16 AC 608 ms
93,752 KB
testcase_17 AC 713 ms
95,884 KB
testcase_18 AC 60 ms
71,424 KB
testcase_19 AC 1,555 ms
128,892 KB
testcase_20 AC 204 ms
81,276 KB
testcase_21 AC 1,878 ms
138,576 KB
testcase_22 AC 722 ms
95,220 KB
testcase_23 AC 509 ms
90,808 KB
testcase_24 AC 60 ms
70,400 KB
testcase_25 AC 101 ms
77,512 KB
testcase_26 AC 339 ms
84,912 KB
testcase_27 AC 776 ms
99,476 KB
testcase_28 AC 1,482 ms
124,104 KB
testcase_29 AC 275 ms
82,480 KB
testcase_30 AC 395 ms
86,968 KB
testcase_31 AC 80 ms
76,480 KB
testcase_32 AC 771 ms
99,340 KB
testcase_33 AC 501 ms
88,996 KB
testcase_34 AC 87 ms
77,440 KB
testcase_35 AC 156 ms
79,788 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)
    return n

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