結果

問題 No.1703 Much Matching
ユーザー vwxyzvwxyz
提出日時 2021-10-08 22:25:57
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 588 bytes
コンパイル時間 273 ms
コンパイル使用メモリ 82,308 KB
実行使用メモリ 224,548 KB
最終ジャッジ日時 2024-07-23 05:00:47
合計ジャッジ時間 24,098 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
57,600 KB
testcase_01 AC 40 ms
52,864 KB
testcase_02 AC 40 ms
52,608 KB
testcase_03 AC 41 ms
52,736 KB
testcase_04 AC 47 ms
59,136 KB
testcase_05 AC 44 ms
58,368 KB
testcase_06 AC 1,149 ms
120,508 KB
testcase_07 AC 98 ms
78,208 KB
testcase_08 AC 1,212 ms
122,348 KB
testcase_09 AC 1,408 ms
130,544 KB
testcase_10 AC 202 ms
82,424 KB
testcase_11 AC 294 ms
86,204 KB
testcase_12 AC 96 ms
78,080 KB
testcase_13 AC 516 ms
95,372 KB
testcase_14 AC 65 ms
73,624 KB
testcase_15 AC 243 ms
84,352 KB
testcase_16 AC 742 ms
102,136 KB
testcase_17 AC 858 ms
107,532 KB
testcase_18 AC 65 ms
71,936 KB
testcase_19 AC 1,940 ms
152,032 KB
testcase_20 AC 233 ms
83,976 KB
testcase_21 TLE -
testcase_22 AC 798 ms
105,728 KB
testcase_23 AC 599 ms
99,132 KB
testcase_24 AC 63 ms
71,040 KB
testcase_25 AC 108 ms
77,824 KB
testcase_26 AC 389 ms
89,788 KB
testcase_27 AC 928 ms
111,504 KB
testcase_28 AC 1,836 ms
146,512 KB
testcase_29 AC 322 ms
86,872 KB
testcase_30 AC 480 ms
93,244 KB
testcase_31 AC 85 ms
77,440 KB
testcase_32 AC 938 ms
110,332 KB
testcase_33 AC 597 ms
97,852 KB
testcase_34 AC 95 ms
77,696 KB
testcase_35 AC 175 ms
81,792 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(key=lambda tpl:(tpl[0],-tpl[1]))
B=[b for a,b in AB]
inf=1<<60
ans=LIS(B,max_value=inf)
print(ans)
0