結果

問題 No.1703 Much Matching
ユーザー mkawa2mkawa2
提出日時 2021-10-09 08:26:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 878 ms / 2,000 ms
コード長 1,051 bytes
コンパイル時間 390 ms
コンパイル使用メモリ 82,324 KB
実行使用メモリ 219,900 KB
最終ジャッジ日時 2024-07-23 20:33:14
合計ジャッジ時間 8,978 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
54,664 KB
testcase_01 AC 43 ms
54,724 KB
testcase_02 AC 43 ms
54,920 KB
testcase_03 AC 66 ms
67,860 KB
testcase_04 AC 66 ms
68,252 KB
testcase_05 AC 73 ms
71,356 KB
testcase_06 AC 257 ms
103,396 KB
testcase_07 AC 84 ms
77,044 KB
testcase_08 AC 294 ms
105,820 KB
testcase_09 AC 310 ms
111,408 KB
testcase_10 AC 100 ms
79,680 KB
testcase_11 AC 131 ms
81,188 KB
testcase_12 AC 80 ms
76,720 KB
testcase_13 AC 158 ms
88,908 KB
testcase_14 AC 67 ms
72,428 KB
testcase_15 AC 128 ms
78,568 KB
testcase_16 AC 177 ms
91,332 KB
testcase_17 AC 212 ms
96,396 KB
testcase_18 AC 64 ms
70,716 KB
testcase_19 AC 390 ms
128,608 KB
testcase_20 AC 92 ms
78,364 KB
testcase_21 AC 467 ms
137,780 KB
testcase_22 AC 225 ms
93,572 KB
testcase_23 AC 183 ms
88,464 KB
testcase_24 AC 66 ms
70,444 KB
testcase_25 AC 87 ms
76,896 KB
testcase_26 AC 158 ms
81,600 KB
testcase_27 AC 226 ms
101,312 KB
testcase_28 AC 406 ms
125,476 KB
testcase_29 AC 136 ms
80,288 KB
testcase_30 AC 154 ms
84,216 KB
testcase_31 AC 87 ms
77,028 KB
testcase_32 AC 230 ms
99,364 KB
testcase_33 AC 190 ms
91,180 KB
testcase_34 AC 78 ms
76,800 KB
testcase_35 AC 100 ms
77,660 KB
testcase_36 AC 878 ms
219,900 KB
testcase_37 AC 108 ms
84,660 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

sys.setrecursionlimit(200005)
int1 = lambda x: int(x)-1
p2D = lambda x: print(*x, sep="\n")
def II(): return int(sys.stdin.readline())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LI1(): return list(map(int1, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def LLI1(rows_number): return [LI1() for _ in range(rows_number)]
def SI(): return sys.stdin.readline().rstrip()
# dij = [(0, 1), (-1, 0), (0, -1), (1, 0)]
dij = [(0, 1), (1, 0), (0, -1), (-1, 0)]
# dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)]
inf = 10**19
# md = 998244353
md = 10**9+7

from collections import defaultdict

n, m, q = LI()

itoj = defaultdict(set)

for _ in range(q):
    a, b = LI1()
    itoj[a].add(b)

dp = [[0]*(m+1) for _ in range(n+1)]

for i in range(n):
    for j in range(m):
        if j in itoj[i]:
            dp[i+1][j+1] = max(dp[i+1][j+1], dp[i][j]+1)
        else:
            dp[i+1][j+1] = max(dp[i+1][j], dp[i][j+1])
# p2D(dp)

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