結果

問題 No.1703 Much Matching
ユーザー H20H20
提出日時 2021-10-08 23:33:14
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 674 bytes
コンパイル時間 261 ms
コンパイル使用メモリ 82,388 KB
実行使用メモリ 340,832 KB
最終ジャッジ日時 2024-07-23 07:46:15
合計ジャッジ時間 20,100 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
60,284 KB
testcase_01 AC 41 ms
52,068 KB
testcase_02 AC 38 ms
52,664 KB
testcase_03 AC 40 ms
53,692 KB
testcase_04 AC 45 ms
60,980 KB
testcase_05 AC 43 ms
59,260 KB
testcase_06 AC 832 ms
148,392 KB
testcase_07 AC 91 ms
77,524 KB
testcase_08 AC 914 ms
156,656 KB
testcase_09 AC 1,016 ms
160,384 KB
testcase_10 AC 176 ms
84,628 KB
testcase_11 AC 238 ms
90,224 KB
testcase_12 AC 92 ms
77,852 KB
testcase_13 AC 418 ms
107,636 KB
testcase_14 AC 71 ms
74,356 KB
testcase_15 AC 220 ms
88,908 KB
testcase_16 AC 527 ms
116,112 KB
testcase_17 AC 663 ms
130,572 KB
testcase_18 AC 71 ms
73,804 KB
testcase_19 AC 1,477 ms
223,804 KB
testcase_20 AC 201 ms
88,668 KB
testcase_21 AC 1,650 ms
217,092 KB
testcase_22 AC 600 ms
122,476 KB
testcase_23 AC 473 ms
113,040 KB
testcase_24 AC 66 ms
73,472 KB
testcase_25 AC 107 ms
78,744 KB
testcase_26 AC 311 ms
94,380 KB
testcase_27 AC 695 ms
138,384 KB
testcase_28 AC 1,425 ms
213,128 KB
testcase_29 AC 272 ms
93,164 KB
testcase_30 AC 370 ms
100,204 KB
testcase_31 AC 85 ms
77,248 KB
testcase_32 AC 721 ms
137,848 KB
testcase_33 AC 495 ms
115,176 KB
testcase_34 AC 93 ms
77,884 KB
testcase_35 AC 155 ms
83,148 KB
testcase_36 TLE -
testcase_37 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import bisect
from sys import stdin

def main():
    readline = stdin.readline
    # N: 数列の長さ
    # A[i]: a_i の値
    def solve(N, A):
        INF = 10**10

        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)

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

    print(solve(N,H))

main()
0