結果

問題 No.1703 Much Matching
ユーザー gr1msl3ygr1msl3y
提出日時 2021-10-08 22:46:08
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 332 bytes
コンパイル時間 172 ms
コンパイル使用メモリ 82,376 KB
実行使用メモリ 169,060 KB
最終ジャッジ日時 2024-07-23 05:52:59
合計ジャッジ時間 27,702 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
59,268 KB
testcase_01 AC 38 ms
52,604 KB
testcase_02 AC 39 ms
53,136 KB
testcase_03 AC 39 ms
53,340 KB
testcase_04 AC 48 ms
61,196 KB
testcase_05 AC 45 ms
59,480 KB
testcase_06 AC 1,324 ms
122,168 KB
testcase_07 AC 124 ms
78,816 KB
testcase_08 AC 1,434 ms
123,336 KB
testcase_09 AC 1,653 ms
132,052 KB
testcase_10 AC 242 ms
84,032 KB
testcase_11 AC 344 ms
88,112 KB
testcase_12 AC 115 ms
78,696 KB
testcase_13 AC 594 ms
97,516 KB
testcase_14 AC 85 ms
77,428 KB
testcase_15 AC 290 ms
85,716 KB
testcase_16 AC 854 ms
106,268 KB
testcase_17 AC 998 ms
110,980 KB
testcase_18 AC 86 ms
76,940 KB
testcase_19 TLE -
testcase_20 AC 271 ms
85,380 KB
testcase_21 TLE -
testcase_22 AC 961 ms
109,196 KB
testcase_23 AC 725 ms
101,148 KB
testcase_24 AC 85 ms
77,088 KB
testcase_25 AC 139 ms
79,732 KB
testcase_26 AC 472 ms
92,504 KB
testcase_27 AC 1,113 ms
113,784 KB
testcase_28 TLE -
testcase_29 AC 373 ms
89,080 KB
testcase_30 AC 556 ms
95,896 KB
testcase_31 AC 103 ms
77,856 KB
testcase_32 AC 1,090 ms
113,816 KB
testcase_33 AC 702 ms
100,864 KB
testcase_34 AC 115 ms
78,672 KB
testcase_35 AC 220 ms
82,772 KB
testcase_36 TLE -
testcase_37 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import bisect_left
N, M, Q = map(int, input().split())
A = [list(map(int, input().split())) for _ in range(Q)]
A.sort(key=lambda x: (x[0], -x[1]))

INF = 10**9
dp = [INF]*(N+M+1)
dp[0] = 0

for _, b in A:
    ind = bisect_left(dp, b)
    dp[ind] = min(dp[ind], b)

ans = 0
while dp[ans+1] < INF:
    ans += 1
print(ans)
0