結果

問題 No.1703 Much Matching
ユーザー roarisroaris
提出日時 2021-10-17 20:13:30
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 302 bytes
コンパイル時間 155 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 225,948 KB
最終ジャッジ日時 2024-09-17 19:45:52
合計ジャッジ時間 22,294 ms
ジャッジサーバーID
(参考情報)
judge6 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
59,972 KB
testcase_01 AC 33 ms
53,632 KB
testcase_02 AC 32 ms
53,220 KB
testcase_03 AC 30 ms
53,016 KB
testcase_04 AC 35 ms
60,732 KB
testcase_05 AC 37 ms
57,664 KB
testcase_06 AC 927 ms
117,164 KB
testcase_07 AC 82 ms
77,996 KB
testcase_08 AC 1,020 ms
118,796 KB
testcase_09 AC 1,159 ms
125,612 KB
testcase_10 AC 172 ms
82,564 KB
testcase_11 AC 239 ms
86,124 KB
testcase_12 AC 80 ms
77,672 KB
testcase_13 AC 441 ms
94,776 KB
testcase_14 AC 71 ms
76,216 KB
testcase_15 AC 201 ms
84,848 KB
testcase_16 AC 605 ms
103,056 KB
testcase_17 AC 700 ms
107,060 KB
testcase_18 AC 59 ms
76,280 KB
testcase_19 AC 1,792 ms
141,044 KB
testcase_20 AC 197 ms
84,460 KB
testcase_21 AC 1,932 ms
152,740 KB
testcase_22 AC 673 ms
105,932 KB
testcase_23 AC 506 ms
97,452 KB
testcase_24 AC 59 ms
73,308 KB
testcase_25 AC 95 ms
78,956 KB
testcase_26 AC 328 ms
90,060 KB
testcase_27 AC 766 ms
109,432 KB
testcase_28 AC 1,532 ms
138,152 KB
testcase_29 AC 262 ms
87,104 KB
testcase_30 AC 387 ms
93,292 KB
testcase_31 AC 69 ms
77,436 KB
testcase_32 AC 780 ms
109,360 KB
testcase_33 AC 517 ms
98,296 KB
testcase_34 AC 78 ms
77,768 KB
testcase_35 AC 143 ms
81,364 KB
testcase_36 TLE -
testcase_37 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
from bisect import *

N, M, Q = map(int, input().split())
ab = [tuple(map(int, input().split())) for _ in range(Q)]
ab.sort(key=lambda t: (t[0], -t[1]))
dp = [10**18]*(N+1)
dp[0] = 0

for _, b in ab:
    dp[bisect_left(dp, b)] = b

print(bisect_left(dp, 10**18)-1)
0