結果

問題 No.1703 Much Matching
ユーザー vwxyzvwxyz
提出日時 2021-10-08 22:26:28
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 588 bytes
コンパイル時間 88 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 242,448 KB
最終ジャッジ日時 2024-07-23 05:02:31
合計ジャッジ時間 15,912 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
17,696 KB
testcase_01 AC 35 ms
10,752 KB
testcase_02 AC 32 ms
10,880 KB
testcase_03 AC 31 ms
10,752 KB
testcase_04 AC 32 ms
10,752 KB
testcase_05 AC 31 ms
10,752 KB
testcase_06 AC 1,348 ms
70,700 KB
testcase_07 AC 75 ms
13,568 KB
testcase_08 AC 1,472 ms
76,272 KB
testcase_09 AC 1,701 ms
85,504 KB
testcase_10 AC 188 ms
19,996 KB
testcase_11 AC 302 ms
26,028 KB
testcase_12 AC 67 ms
13,312 KB
testcase_13 AC 575 ms
38,244 KB
testcase_14 AC 41 ms
11,520 KB
testcase_15 AC 246 ms
23,408 KB
testcase_16 AC 818 ms
48,420 KB
testcase_17 AC 959 ms
54,744 KB
testcase_18 AC 39 ms
11,264 KB
testcase_19 TLE -
testcase_20 AC 220 ms
21,708 KB
testcase_21 TLE -
testcase_22 AC 981 ms
55,632 KB
testcase_23 AC 693 ms
43,060 KB
testcase_24 AC 39 ms
11,264 KB
testcase_25 AC 86 ms
14,336 KB
testcase_26 AC 446 ms
32,460 KB
testcase_27 AC 1,041 ms
58,248 KB
testcase_28 TLE -
testcase_29 AC 339 ms
27,564 KB
testcase_30 AC 531 ms
36,208 KB
testcase_31 AC 58 ms
12,544 KB
testcase_32 AC 1,120 ms
61,244 KB
testcase_33 AC 697 ms
44,196 KB
testcase_34 AC 67 ms
13,056 KB
testcase_35 AC 159 ms
18,332 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