結果

問題 No.1703 Much Matching
ユーザー vwxyzvwxyz
提出日時 2021-10-08 22:27:06
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 559 bytes
コンパイル時間 131 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 144,092 KB
最終ジャッジ日時 2024-07-23 05:04:24
合計ジャッジ時間 23,406 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
16,128 KB
testcase_01 AC 32 ms
10,624 KB
testcase_02 AC 30 ms
10,752 KB
testcase_03 AC 30 ms
10,624 KB
testcase_04 AC 31 ms
10,624 KB
testcase_05 AC 30 ms
10,624 KB
testcase_06 AC 1,158 ms
74,096 KB
testcase_07 AC 71 ms
13,568 KB
testcase_08 AC 1,209 ms
81,564 KB
testcase_09 AC 1,425 ms
91,400 KB
testcase_10 AC 170 ms
19,968 KB
testcase_11 AC 274 ms
26,384 KB
testcase_12 AC 62 ms
13,056 KB
testcase_13 AC 496 ms
39,740 KB
testcase_14 AC 40 ms
11,392 KB
testcase_15 AC 211 ms
23,904 KB
testcase_16 AC 730 ms
49,880 KB
testcase_17 AC 848 ms
55,688 KB
testcase_18 AC 38 ms
11,136 KB
testcase_19 AC 1,944 ms
117,712 KB
testcase_20 AC 195 ms
22,204 KB
testcase_21 TLE -
testcase_22 AC 788 ms
58,720 KB
testcase_23 AC 579 ms
44,708 KB
testcase_24 AC 38 ms
11,136 KB
testcase_25 AC 80 ms
14,464 KB
testcase_26 AC 355 ms
33,328 KB
testcase_27 AC 895 ms
59,516 KB
testcase_28 AC 1,870 ms
116,700 KB
testcase_29 AC 296 ms
28,340 KB
testcase_30 AC 451 ms
37,968 KB
testcase_31 AC 56 ms
12,416 KB
testcase_32 AC 917 ms
64,444 KB
testcase_33 AC 593 ms
46,556 KB
testcase_34 AC 66 ms
12,928 KB
testcase_35 AC 146 ms
18,432 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