結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,592 KB
testcase_01 AC 37 ms
53,476 KB
testcase_02 AC 37 ms
53,204 KB
testcase_03 AC 38 ms
53,724 KB
testcase_04 AC 47 ms
62,012 KB
testcase_05 AC 41 ms
59,732 KB
testcase_06 AC 381 ms
109,408 KB
testcase_07 AC 94 ms
78,296 KB
testcase_08 AC 406 ms
110,588 KB
testcase_09 AC 444 ms
116,428 KB
testcase_10 AC 127 ms
82,044 KB
testcase_11 AC 153 ms
84,764 KB
testcase_12 AC 88 ms
77,344 KB
testcase_13 AC 217 ms
91,476 KB
testcase_14 AC 78 ms
76,968 KB
testcase_15 AC 136 ms
83,052 KB
testcase_16 AC 269 ms
97,604 KB
testcase_17 AC 310 ms
101,428 KB
testcase_18 AC 80 ms
76,820 KB
testcase_19 AC 560 ms
127,732 KB
testcase_20 AC 135 ms
82,960 KB
testcase_21 AC 665 ms
137,720 KB
testcase_22 AC 296 ms
100,036 KB
testcase_23 AC 245 ms
93,844 KB
testcase_24 AC 81 ms
76,948 KB
testcase_25 AC 96 ms
78,992 KB
testcase_26 AC 182 ms
87,676 KB
testcase_27 AC 335 ms
103,008 KB
testcase_28 AC 571 ms
126,396 KB
testcase_29 AC 170 ms
86,136 KB
testcase_30 AC 212 ms
90,116 KB
testcase_31 AC 88 ms
77,556 KB
testcase_32 AC 332 ms
102,688 KB
testcase_33 AC 243 ms
93,872 KB
testcase_34 AC 89 ms
77,320 KB
testcase_35 AC 121 ms
81,164 KB
testcase_36 AC 1,222 ms
193,784 KB
testcase_37 AC 60 ms
67,080 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