結果

問題 No.1703 Much Matching
ユーザー NatsubiSoganNatsubiSogan
提出日時 2021-10-08 22:33:02
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 270 bytes
コンパイル時間 479 ms
コンパイル使用メモリ 82,328 KB
実行使用メモリ 243,272 KB
最終ジャッジ日時 2024-07-23 05:32:07
合計ジャッジ時間 26,795 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
60,620 KB
testcase_01 AC 37 ms
52,672 KB
testcase_02 AC 37 ms
52,768 KB
testcase_03 AC 38 ms
52,740 KB
testcase_04 AC 48 ms
61,368 KB
testcase_05 AC 44 ms
58,904 KB
testcase_06 AC 1,288 ms
124,052 KB
testcase_07 AC 118 ms
79,300 KB
testcase_08 AC 1,355 ms
125,384 KB
testcase_09 AC 1,588 ms
134,480 KB
testcase_10 AC 236 ms
84,144 KB
testcase_11 AC 338 ms
88,580 KB
testcase_12 AC 113 ms
78,680 KB
testcase_13 AC 581 ms
98,472 KB
testcase_14 AC 84 ms
77,216 KB
testcase_15 AC 274 ms
86,060 KB
testcase_16 AC 816 ms
107,276 KB
testcase_17 AC 964 ms
112,408 KB
testcase_18 AC 81 ms
77,160 KB
testcase_19 TLE -
testcase_20 AC 273 ms
85,616 KB
testcase_21 TLE -
testcase_22 AC 920 ms
110,916 KB
testcase_23 AC 696 ms
102,576 KB
testcase_24 AC 82 ms
76,964 KB
testcase_25 AC 131 ms
79,396 KB
testcase_26 AC 439 ms
92,844 KB
testcase_27 AC 1,046 ms
115,492 KB
testcase_28 TLE -
testcase_29 AC 363 ms
89,656 KB
testcase_30 AC 543 ms
96,952 KB
testcase_31 AC 105 ms
78,100 KB
testcase_32 AC 1,067 ms
115,216 KB
testcase_33 AC 683 ms
101,880 KB
testcase_34 AC 113 ms
78,488 KB
testcase_35 AC 217 ms
83,128 KB
testcase_36 TLE -
testcase_37 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

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))
0