結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
17,692 KB
testcase_01 AC 30 ms
10,880 KB
testcase_02 AC 31 ms
10,752 KB
testcase_03 AC 31 ms
10,752 KB
testcase_04 AC 30 ms
10,880 KB
testcase_05 AC 30 ms
10,880 KB
testcase_06 AC 1,031 ms
53,216 KB
testcase_07 AC 68 ms
12,672 KB
testcase_08 AC 1,119 ms
57,740 KB
testcase_09 AC 1,304 ms
64,004 KB
testcase_10 AC 150 ms
17,008 KB
testcase_11 AC 243 ms
21,256 KB
testcase_12 AC 60 ms
12,416 KB
testcase_13 AC 434 ms
30,132 KB
testcase_14 AC 38 ms
11,136 KB
testcase_15 AC 202 ms
19,796 KB
testcase_16 AC 668 ms
36,812 KB
testcase_17 AC 769 ms
40,440 KB
testcase_18 AC 38 ms
11,008 KB
testcase_19 AC 1,777 ms
81,616 KB
testcase_20 AC 181 ms
18,360 KB
testcase_21 TLE -
testcase_22 AC 733 ms
42,720 KB
testcase_23 AC 535 ms
33,556 KB
testcase_24 AC 37 ms
11,136 KB
testcase_25 AC 74 ms
13,312 KB
testcase_26 AC 352 ms
26,152 KB
testcase_27 AC 838 ms
43,380 KB
testcase_28 AC 1,730 ms
80,784 KB
testcase_29 AC 273 ms
22,692 KB
testcase_30 AC 405 ms
29,124 KB
testcase_31 AC 54 ms
12,032 KB
testcase_32 AC 850 ms
46,508 KB
testcase_33 AC 543 ms
34,644 KB
testcase_34 AC 62 ms
12,288 KB
testcase_35 AC 137 ms
15,744 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)
    dp=[max_value]*N
    for x in lst:
        i=f(dp,x)
        dp[i]=x
    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<<30
ans=LIS(B,max_value=inf)
print(ans)
0