結果

問題 No.1703 Much Matching
ユーザー puznekopuzneko
提出日時 2021-10-30 00:03:05
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 427 bytes
コンパイル時間 361 ms
コンパイル使用メモリ 82,280 KB
実行使用メモリ 390,516 KB
最終ジャッジ日時 2024-10-07 13:10:51
合計ジャッジ時間 22,409 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
60,424 KB
testcase_01 AC 37 ms
53,596 KB
testcase_02 AC 36 ms
53,360 KB
testcase_03 AC 37 ms
52,768 KB
testcase_04 AC 42 ms
59,328 KB
testcase_05 AC 35 ms
52,988 KB
testcase_06 AC 936 ms
183,564 KB
testcase_07 AC 89 ms
79,032 KB
testcase_08 AC 998 ms
184,988 KB
testcase_09 AC 1,156 ms
191,172 KB
testcase_10 AC 176 ms
92,420 KB
testcase_11 AC 248 ms
103,940 KB
testcase_12 AC 88 ms
77,836 KB
testcase_13 AC 438 ms
120,172 KB
testcase_14 AC 58 ms
72,000 KB
testcase_15 AC 213 ms
98,068 KB
testcase_16 AC 623 ms
134,212 KB
testcase_17 AC 728 ms
152,456 KB
testcase_18 AC 61 ms
72,904 KB
testcase_19 AC 1,562 ms
220,504 KB
testcase_20 AC 205 ms
97,652 KB
testcase_21 AC 1,847 ms
261,312 KB
testcase_22 AC 692 ms
147,764 KB
testcase_23 AC 508 ms
132,424 KB
testcase_24 AC 55 ms
69,204 KB
testcase_25 AC 101 ms
79,492 KB
testcase_26 AC 338 ms
118,276 KB
testcase_27 AC 787 ms
163,892 KB
testcase_28 AC 1,450 ms
200,756 KB
testcase_29 AC 268 ms
108,072 KB
testcase_30 AC 396 ms
119,100 KB
testcase_31 AC 77 ms
77,128 KB
testcase_32 AC 786 ms
163,564 KB
testcase_33 AC 490 ms
125,616 KB
testcase_34 AC 83 ms
77,600 KB
testcase_35 AC 157 ms
90,308 KB
testcase_36 TLE -
testcase_37 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

from sys import stdin
import bisect
n, m, q, *indata = map(int, stdin.read().split())
offset = 0
hq = []
for i in range(q):
    s, t = indata[offset + 2*i],indata[offset + 2*i+1]
    hq.append((s,-t))

hq.sort()
dp = [-hq[0][1]]
ans = 1
for i in range(1,q):
    a = -hq[i][1]
    kari = bisect.bisect_left(dp,a)
    if kari == ans:
        dp.append(a)
        ans += 1
    else:
        dp[kari] = a
print("{}".format(ans))

0