結果

問題 No.1703 Much Matching
ユーザー tamatotamato
提出日時 2021-10-08 22:14:52
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 552 bytes
コンパイル時間 183 ms
コンパイル使用メモリ 82,572 KB
実行使用メモリ 263,588 KB
最終ジャッジ日時 2024-07-23 04:43:00
合計ジャッジ時間 20,864 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
60,296 KB
testcase_01 AC 41 ms
53,424 KB
testcase_02 AC 39 ms
53,064 KB
testcase_03 AC 41 ms
54,208 KB
testcase_04 AC 46 ms
60,344 KB
testcase_05 AC 40 ms
54,216 KB
testcase_06 AC 893 ms
117,700 KB
testcase_07 AC 98 ms
77,636 KB
testcase_08 AC 1,022 ms
124,924 KB
testcase_09 AC 1,173 ms
130,576 KB
testcase_10 AC 180 ms
81,264 KB
testcase_11 AC 260 ms
84,944 KB
testcase_12 AC 94 ms
77,968 KB
testcase_13 AC 452 ms
95,548 KB
testcase_14 AC 63 ms
71,444 KB
testcase_15 AC 232 ms
83,876 KB
testcase_16 AC 577 ms
99,412 KB
testcase_17 AC 687 ms
104,336 KB
testcase_18 AC 64 ms
71,176 KB
testcase_19 AC 1,590 ms
157,716 KB
testcase_20 AC 200 ms
83,048 KB
testcase_21 AC 1,904 ms
166,220 KB
testcase_22 AC 675 ms
103,040 KB
testcase_23 AC 533 ms
97,428 KB
testcase_24 AC 62 ms
69,788 KB
testcase_25 AC 112 ms
78,264 KB
testcase_26 AC 355 ms
88,272 KB
testcase_27 AC 759 ms
108,360 KB
testcase_28 AC 1,529 ms
150,500 KB
testcase_29 AC 292 ms
86,036 KB
testcase_30 AC 418 ms
89,908 KB
testcase_31 AC 88 ms
77,292 KB
testcase_32 AC 762 ms
107,708 KB
testcase_33 AC 520 ms
96,616 KB
testcase_34 AC 94 ms
78,172 KB
testcase_35 AC 165 ms
80,976 KB
testcase_36 TLE -
testcase_37 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 1000000007
eps = 10**-9


def main():
    import sys
    from bisect import bisect_left
    input = sys.stdin.readline

    N, M, Q = map(int, input().split())
    XY = []
    for _ in range(Q):
        XY.append(tuple(map(int, input().split())))

    XY.sort(key=lambda x: x[1], reverse=True)
    XY.sort(key=lambda x: x[0])

    LIS = [0]
    for _, y in XY:
        j = bisect_left(LIS, y)
        if j == len(LIS):
            LIS.append(y)
        else:
            LIS[j] = y
    print(len(LIS) - 1)


if __name__ == '__main__':
    main()
0