結果

問題 No.1703 Much Matching
ユーザー 👑 SPD_9X2SPD_9X2
提出日時 2021-10-08 22:21:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,085 ms / 2,000 ms
コード長 416 bytes
コンパイル時間 167 ms
コンパイル使用メモリ 82,324 KB
実行使用メモリ 243,504 KB
最終ジャッジ日時 2024-07-23 04:53:24
合計ジャッジ時間 9,199 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,204 KB
testcase_01 AC 39 ms
52,796 KB
testcase_02 AC 38 ms
52,508 KB
testcase_03 AC 61 ms
70,748 KB
testcase_04 AC 60 ms
69,344 KB
testcase_05 AC 87 ms
80,344 KB
testcase_06 AC 305 ms
108,140 KB
testcase_07 AC 64 ms
75,168 KB
testcase_08 AC 376 ms
109,984 KB
testcase_09 AC 361 ms
111,668 KB
testcase_10 AC 101 ms
81,924 KB
testcase_11 AC 135 ms
88,532 KB
testcase_12 AC 65 ms
75,236 KB
testcase_13 AC 176 ms
90,984 KB
testcase_14 AC 58 ms
68,116 KB
testcase_15 AC 148 ms
88,964 KB
testcase_16 AC 215 ms
95,508 KB
testcase_17 AC 227 ms
96,568 KB
testcase_18 AC 53 ms
67,544 KB
testcase_19 AC 478 ms
133,152 KB
testcase_20 AC 92 ms
82,912 KB
testcase_21 AC 577 ms
143,700 KB
testcase_22 AC 274 ms
99,448 KB
testcase_23 AC 198 ms
93,124 KB
testcase_24 AC 55 ms
67,596 KB
testcase_25 AC 81 ms
79,564 KB
testcase_26 AC 184 ms
91,492 KB
testcase_27 AC 269 ms
100,820 KB
testcase_28 AC 526 ms
131,344 KB
testcase_29 AC 150 ms
91,264 KB
testcase_30 AC 173 ms
90,756 KB
testcase_31 AC 79 ms
78,564 KB
testcase_32 AC 278 ms
102,604 KB
testcase_33 AC 225 ms
94,560 KB
testcase_34 AC 66 ms
74,652 KB
testcase_35 AC 99 ms
81,024 KB
testcase_36 AC 1,085 ms
243,504 KB
testcase_37 AC 117 ms
83,836 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

"""

"""
from sys import stdin
import sys

N,M,Q = map(int,stdin.readline().split())

dp = [[0] * (M+1) for i in range(N+1)]

ab = set()

for i in range(Q):

    a,b = map(int,stdin.readline().split())

    ab.add((a,b))

for i in range(N+1):
    for j in range(M+1):
        dp[i][j] = max(dp[i-1][j] , dp[i][j-1])
        if (i,j) in ab:
            dp[i][j] = max(dp[i][j] , dp[i-1][j-1] + 1)

print (dp[-1][-1])
0