結果

問題 No.1703 Much Matching
ユーザー gr1msl3ygr1msl3y
提出日時 2021-10-08 22:55:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,289 ms / 2,000 ms
コード長 418 bytes
コンパイル時間 298 ms
コンパイル使用メモリ 82,532 KB
実行使用メモリ 194,336 KB
最終ジャッジ日時 2024-07-23 06:08:13
合計ジャッジ時間 11,160 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,208 KB
testcase_01 AC 41 ms
53,376 KB
testcase_02 AC 40 ms
52,936 KB
testcase_03 AC 41 ms
52,656 KB
testcase_04 AC 49 ms
61,572 KB
testcase_05 AC 43 ms
58,528 KB
testcase_06 AC 404 ms
108,940 KB
testcase_07 AC 99 ms
78,280 KB
testcase_08 AC 424 ms
110,860 KB
testcase_09 AC 479 ms
116,384 KB
testcase_10 AC 132 ms
81,748 KB
testcase_11 AC 164 ms
84,976 KB
testcase_12 AC 91 ms
77,672 KB
testcase_13 AC 232 ms
91,392 KB
testcase_14 AC 84 ms
77,176 KB
testcase_15 AC 147 ms
83,512 KB
testcase_16 AC 296 ms
97,460 KB
testcase_17 AC 336 ms
101,136 KB
testcase_18 AC 86 ms
77,032 KB
testcase_19 AC 593 ms
127,996 KB
testcase_20 AC 140 ms
82,976 KB
testcase_21 AC 701 ms
138,008 KB
testcase_22 AC 314 ms
100,104 KB
testcase_23 AC 258 ms
94,076 KB
testcase_24 AC 85 ms
77,124 KB
testcase_25 AC 100 ms
78,540 KB
testcase_26 AC 195 ms
87,724 KB
testcase_27 AC 342 ms
103,292 KB
testcase_28 AC 597 ms
126,392 KB
testcase_29 AC 174 ms
85,668 KB
testcase_30 AC 220 ms
90,052 KB
testcase_31 AC 92 ms
77,620 KB
testcase_32 AC 349 ms
102,820 KB
testcase_33 AC 256 ms
93,872 KB
testcase_34 AC 93 ms
77,204 KB
testcase_35 AC 128 ms
81,016 KB
testcase_36 AC 1,289 ms
194,336 KB
testcase_37 AC 63 ms
67,000 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import bisect_left
N, M, Q = map(int, input().split())
A = [list(map(int, input().split())) for _ in range(Q)]
B = [0]*Q
for i in range(Q):
    a, b = A[i]
    c = 2**10-1-b
    B[i] = a*(2**10)+c
B.sort()

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

for v in B:
    b = 2**10-1-(v % (2**10))
    ind = bisect_left(dp, b)
    dp[ind] = min(dp[ind], b)

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