結果

問題 No.1703 Much Matching
ユーザー H20H20
提出日時 2021-10-08 23:40:44
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 551 bytes
コンパイル時間 152 ms
コンパイル使用メモリ 82,440 KB
実行使用メモリ 311,448 KB
最終ジャッジ日時 2024-07-23 08:02:40
合計ジャッジ時間 24,895 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
60,440 KB
testcase_01 AC 38 ms
52,372 KB
testcase_02 AC 43 ms
53,108 KB
testcase_03 AC 41 ms
53,920 KB
testcase_04 AC 45 ms
59,668 KB
testcase_05 AC 42 ms
58,860 KB
testcase_06 AC 1,196 ms
155,008 KB
testcase_07 AC 98 ms
78,836 KB
testcase_08 AC 1,263 ms
156,824 KB
testcase_09 AC 1,479 ms
169,972 KB
testcase_10 AC 209 ms
86,276 KB
testcase_11 AC 297 ms
92,784 KB
testcase_12 AC 97 ms
78,500 KB
testcase_13 AC 530 ms
108,028 KB
testcase_14 AC 76 ms
77,236 KB
testcase_15 AC 247 ms
88,932 KB
testcase_16 AC 761 ms
123,536 KB
testcase_17 AC 891 ms
131,720 KB
testcase_18 AC 73 ms
76,224 KB
testcase_19 TLE -
testcase_20 AC 243 ms
88,344 KB
testcase_21 TLE -
testcase_22 AC 833 ms
130,536 KB
testcase_23 AC 637 ms
115,300 KB
testcase_24 AC 72 ms
76,488 KB
testcase_25 AC 115 ms
79,292 KB
testcase_26 AC 408 ms
99,948 KB
testcase_27 AC 958 ms
138,012 KB
testcase_28 AC 1,954 ms
196,392 KB
testcase_29 AC 333 ms
95,084 KB
testcase_30 AC 490 ms
105,072 KB
testcase_31 AC 88 ms
78,396 KB
testcase_32 AC 983 ms
138,104 KB
testcase_33 AC 622 ms
113,640 KB
testcase_34 AC 98 ms
78,020 KB
testcase_35 AC 182 ms
84,720 KB
testcase_36 TLE -
testcase_37 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import bisect
from sys import stdin

def solve(N, A):
    INF = 10**5

    dp = [INF]*(N+1)
    dp[0] = -1
    for a in A:
        idx = bisect(dp, a-1)
        dp[idx] = min(a, dp[idx])
    return max(i for i in range(N+1) if dp[i] < INF)

def main():
    readline = stdin.readline

    N,M,Q = map(int, readline().split())
    WH = []
    for _ in range(Q):
        WH.append(list(map(int,readline().split())))
    WH = sorted(WH,key=lambda x:(x[0],-x[1]))
    H = []
    for _,h in WH:
        H.append(h)

    print(solve(N,H))

main()
0