結果

問題 No.1703 Much Matching
ユーザー gr1msl3ygr1msl3y
提出日時 2021-10-08 22:50:29
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 344 bytes
コンパイル時間 281 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 189,824 KB
最終ジャッジ日時 2024-07-23 05:59:38
合計ジャッジ時間 25,994 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
57,472 KB
testcase_01 AC 38 ms
52,736 KB
testcase_02 AC 37 ms
52,224 KB
testcase_03 AC 39 ms
52,992 KB
testcase_04 AC 47 ms
60,288 KB
testcase_05 AC 42 ms
58,496 KB
testcase_06 AC 1,264 ms
107,656 KB
testcase_07 AC 124 ms
78,080 KB
testcase_08 AC 1,340 ms
108,772 KB
testcase_09 AC 1,579 ms
114,188 KB
testcase_10 AC 223 ms
81,496 KB
testcase_11 AC 320 ms
84,352 KB
testcase_12 AC 113 ms
77,696 KB
testcase_13 AC 576 ms
90,880 KB
testcase_14 AC 86 ms
76,800 KB
testcase_15 AC 271 ms
83,328 KB
testcase_16 AC 813 ms
96,304 KB
testcase_17 AC 967 ms
99,664 KB
testcase_18 AC 82 ms
77,112 KB
testcase_19 TLE -
testcase_20 AC 264 ms
82,604 KB
testcase_21 TLE -
testcase_22 AC 881 ms
98,548 KB
testcase_23 AC 655 ms
92,800 KB
testcase_24 AC 84 ms
76,940 KB
testcase_25 AC 129 ms
78,548 KB
testcase_26 AC 439 ms
87,240 KB
testcase_27 AC 1,015 ms
101,376 KB
testcase_28 TLE -
testcase_29 AC 351 ms
85,268 KB
testcase_30 AC 514 ms
89,788 KB
testcase_31 AC 103 ms
77,532 KB
testcase_32 AC 1,039 ms
101,376 KB
testcase_33 AC 645 ms
93,396 KB
testcase_34 AC 116 ms
78,192 KB
testcase_35 AC 201 ms
80,896 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)]
for i in range(Q):
    A[i][1] *= -1
A.sort()

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