結果

問題 No.1703 Much Matching
ユーザー 👑 KazunKazun
提出日時 2021-10-08 22:16:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 388 ms / 2,000 ms
コード長 424 bytes
コンパイル時間 232 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 91,480 KB
最終ジャッジ日時 2024-07-23 04:45:27
合計ジャッジ時間 5,575 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,608 KB
testcase_01 AC 36 ms
52,140 KB
testcase_02 AC 36 ms
53,312 KB
testcase_03 AC 47 ms
65,276 KB
testcase_04 AC 47 ms
64,512 KB
testcase_05 AC 50 ms
69,552 KB
testcase_06 AC 140 ms
79,176 KB
testcase_07 AC 56 ms
71,120 KB
testcase_08 AC 175 ms
87,924 KB
testcase_09 AC 171 ms
80,280 KB
testcase_10 AC 70 ms
77,440 KB
testcase_11 AC 88 ms
82,148 KB
testcase_12 AC 57 ms
70,784 KB
testcase_13 AC 104 ms
80,756 KB
testcase_14 AC 51 ms
65,408 KB
testcase_15 AC 85 ms
81,056 KB
testcase_16 AC 104 ms
77,684 KB
testcase_17 AC 120 ms
78,348 KB
testcase_18 AC 49 ms
65,324 KB
testcase_19 AC 190 ms
79,724 KB
testcase_20 AC 66 ms
75,896 KB
testcase_21 AC 228 ms
84,024 KB
testcase_22 AC 131 ms
81,004 KB
testcase_23 AC 106 ms
78,512 KB
testcase_24 AC 48 ms
64,776 KB
testcase_25 AC 62 ms
74,824 KB
testcase_26 AC 102 ms
81,408 KB
testcase_27 AC 131 ms
78,708 KB
testcase_28 AC 216 ms
82,784 KB
testcase_29 AC 91 ms
82,320 KB
testcase_30 AC 100 ms
79,396 KB
testcase_31 AC 58 ms
72,328 KB
testcase_32 AC 137 ms
80,172 KB
testcase_33 AC 121 ms
81,736 KB
testcase_34 AC 57 ms
71,140 KB
testcase_35 AC 72 ms
77,428 KB
testcase_36 AC 388 ms
91,028 KB
testcase_37 AC 78 ms
91,480 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

input=sys.stdin.readline
N,M,Q=map(int,input().split())
E=[[0]*(M+1) for _ in range(N+1)]

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

DP=[[0]*(M+1) for _ in range(N+1)]
for i in range(1,N+1):
    D=DP[i]; DD=DP[i-1]
    e=E[i]
    for j in range(1,M+1):
        if e[j]==0:
            D[j]=max(D[j-1], DD[j])
        else:
            D[j]=max(D[j-1], DD[j], DD[j-1]+1)

print(DP[N][M])
0