結果

問題 No.1703 Much Matching
ユーザー roarisroaris
提出日時 2021-10-23 20:51:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 444 ms / 2,000 ms
コード長 480 bytes
コンパイル時間 1,009 ms
コンパイル使用メモリ 82,260 KB
実行使用メモリ 89,920 KB
最終ジャッジ日時 2024-09-25 12:01:34
合計ジャッジ時間 8,146 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
55,464 KB
testcase_01 AC 40 ms
54,124 KB
testcase_02 AC 40 ms
54,120 KB
testcase_03 AC 66 ms
71,100 KB
testcase_04 AC 61 ms
69,124 KB
testcase_05 AC 92 ms
84,424 KB
testcase_06 AC 163 ms
79,352 KB
testcase_07 AC 61 ms
72,948 KB
testcase_08 AC 201 ms
86,916 KB
testcase_09 AC 195 ms
80,432 KB
testcase_10 AC 84 ms
77,548 KB
testcase_11 AC 108 ms
82,384 KB
testcase_12 AC 64 ms
73,812 KB
testcase_13 AC 121 ms
80,832 KB
testcase_14 AC 58 ms
69,072 KB
testcase_15 AC 116 ms
86,112 KB
testcase_16 AC 122 ms
79,420 KB
testcase_17 AC 137 ms
78,220 KB
testcase_18 AC 56 ms
68,056 KB
testcase_19 AC 217 ms
79,988 KB
testcase_20 AC 79 ms
76,436 KB
testcase_21 AC 248 ms
82,836 KB
testcase_22 AC 168 ms
81,168 KB
testcase_23 AC 133 ms
79,096 KB
testcase_24 AC 56 ms
67,092 KB
testcase_25 AC 81 ms
78,852 KB
testcase_26 AC 130 ms
81,120 KB
testcase_27 AC 140 ms
78,764 KB
testcase_28 AC 257 ms
82,872 KB
testcase_29 AC 114 ms
81,024 KB
testcase_30 AC 125 ms
82,512 KB
testcase_31 AC 70 ms
74,380 KB
testcase_32 AC 171 ms
84,432 KB
testcase_33 AC 148 ms
81,604 KB
testcase_34 AC 65 ms
73,328 KB
testcase_35 AC 87 ms
77,564 KB
testcase_36 AC 444 ms
89,572 KB
testcase_37 AC 106 ms
89,920 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
from collections import *

N, M, Q = map(int, input().split())
ok = [[False]*(M+1) for _ in range(N+1)]

for _ in range(Q):
    a, b = map(int, input().split())
    ok[a][b] = True

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

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

print(dp[N][M])
0