結果

問題 No.1703 Much Matching
ユーザー tamatotamato
提出日時 2021-10-08 22:17:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 558 ms / 2,000 ms
コード長 631 bytes
コンパイル時間 298 ms
コンパイル使用メモリ 82,528 KB
実行使用メモリ 84,536 KB
最終ジャッジ日時 2024-07-23 04:46:52
合計ジャッジ時間 6,850 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
54,152 KB
testcase_01 AC 36 ms
52,628 KB
testcase_02 AC 37 ms
53,508 KB
testcase_03 AC 44 ms
62,332 KB
testcase_04 AC 49 ms
63,296 KB
testcase_05 AC 48 ms
64,836 KB
testcase_06 AC 183 ms
79,572 KB
testcase_07 AC 71 ms
76,780 KB
testcase_08 AC 229 ms
82,008 KB
testcase_09 AC 235 ms
80,644 KB
testcase_10 AC 81 ms
77,092 KB
testcase_11 AC 103 ms
79,220 KB
testcase_12 AC 67 ms
77,292 KB
testcase_13 AC 131 ms
78,740 KB
testcase_14 AC 58 ms
70,008 KB
testcase_15 AC 100 ms
81,212 KB
testcase_16 AC 139 ms
78,060 KB
testcase_17 AC 163 ms
78,368 KB
testcase_18 AC 55 ms
68,680 KB
testcase_19 AC 269 ms
80,520 KB
testcase_20 AC 81 ms
76,528 KB
testcase_21 AC 327 ms
81,168 KB
testcase_22 AC 179 ms
81,524 KB
testcase_23 AC 148 ms
78,940 KB
testcase_24 AC 54 ms
67,692 KB
testcase_25 AC 74 ms
77,560 KB
testcase_26 AC 124 ms
81,380 KB
testcase_27 AC 176 ms
78,836 KB
testcase_28 AC 309 ms
82,972 KB
testcase_29 AC 114 ms
79,700 KB
testcase_30 AC 129 ms
79,976 KB
testcase_31 AC 70 ms
77,624 KB
testcase_32 AC 184 ms
80,368 KB
testcase_33 AC 149 ms
81,716 KB
testcase_34 AC 67 ms
76,628 KB
testcase_35 AC 88 ms
77,472 KB
testcase_36 AC 558 ms
84,536 KB
testcase_37 AC 57 ms
71,888 KB
権限があれば一括ダウンロードができます

ソースコード

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 = [[0] * (M+1) for _ in range(N+1)]
    for _ in range(Q):
        x, y = map(int, input().split())
        XY[x][y] = 1

    LIS = [0]
    for x in range(1, N+1):
        for y in range(M, 0, -1):
            if XY[x][y] == 0:
                continue
            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