結果

問題 No.1703 Much Matching
ユーザー NatsubiSoganNatsubiSogan
提出日時 2021-10-08 22:34:38
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 372 bytes
コンパイル時間 411 ms
コンパイル使用メモリ 82,792 KB
実行使用メモリ 241,920 KB
最終ジャッジ日時 2024-07-23 05:34:55
合計ジャッジ時間 24,622 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
59,696 KB
testcase_01 AC 36 ms
52,524 KB
testcase_02 AC 36 ms
52,532 KB
testcase_03 AC 37 ms
52,584 KB
testcase_04 AC 43 ms
60,232 KB
testcase_05 AC 40 ms
57,788 KB
testcase_06 AC 1,215 ms
122,576 KB
testcase_07 AC 98 ms
78,640 KB
testcase_08 AC 1,234 ms
125,868 KB
testcase_09 AC 1,463 ms
132,732 KB
testcase_10 AC 205 ms
83,796 KB
testcase_11 AC 296 ms
87,980 KB
testcase_12 AC 98 ms
78,160 KB
testcase_13 AC 528 ms
98,116 KB
testcase_14 AC 61 ms
74,568 KB
testcase_15 AC 243 ms
85,504 KB
testcase_16 AC 761 ms
106,936 KB
testcase_17 AC 903 ms
111,864 KB
testcase_18 AC 60 ms
73,852 KB
testcase_19 TLE -
testcase_20 AC 234 ms
85,196 KB
testcase_21 TLE -
testcase_22 AC 840 ms
110,380 KB
testcase_23 AC 626 ms
101,568 KB
testcase_24 AC 60 ms
72,256 KB
testcase_25 AC 106 ms
78,788 KB
testcase_26 AC 400 ms
92,388 KB
testcase_27 AC 970 ms
114,756 KB
testcase_28 AC 1,914 ms
148,108 KB
testcase_29 AC 318 ms
89,408 KB
testcase_30 AC 487 ms
96,336 KB
testcase_31 AC 85 ms
77,916 KB
testcase_32 AC 969 ms
114,740 KB
testcase_33 AC 622 ms
101,304 KB
testcase_34 AC 94 ms
78,120 KB
testcase_35 AC 180 ms
82,472 KB
testcase_36 TLE -
testcase_37 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
	import sys
	input = sys.stdin.buffer.readline
	n, m, q = map(int, input().split())
	ab = [list(map(int, input().split())) for i in range(q)]
	ab.sort(key=lambda x: (x[0], -x[1]))
	INF = 10 ** 9
	from bisect import bisect_left
	dp = [INF] * (q + 1)
	for a, b in ab:
		dp[bisect_left(dp, b)] = b
	print(bisect_left(dp, INF))
if __name__ == '__main__':
	main()
	
0