結果

問題 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
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 35
権限があれば一括ダウンロードができます

ソースコード

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