結果

問題 No.1703 Much Matching
ユーザー harurunharurun
提出日時 2021-09-03 14:38:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 403 ms / 2,000 ms
コード長 468 bytes
コンパイル時間 313 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 98,304 KB
最終ジャッジ日時 2024-07-23 03:29:24
合計ジャッジ時間 5,807 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,480 KB
testcase_01 AC 41 ms
51,840 KB
testcase_02 AC 41 ms
52,096 KB
testcase_03 AC 51 ms
65,280 KB
testcase_04 AC 52 ms
64,128 KB
testcase_05 AC 55 ms
69,120 KB
testcase_06 AC 150 ms
80,768 KB
testcase_07 AC 56 ms
68,992 KB
testcase_08 AC 179 ms
89,472 KB
testcase_09 AC 178 ms
82,560 KB
testcase_10 AC 74 ms
77,568 KB
testcase_11 AC 92 ms
81,920 KB
testcase_12 AC 56 ms
69,120 KB
testcase_13 AC 105 ms
78,592 KB
testcase_14 AC 51 ms
64,128 KB
testcase_15 AC 92 ms
80,896 KB
testcase_16 AC 108 ms
78,720 KB
testcase_17 AC 126 ms
79,232 KB
testcase_18 AC 50 ms
62,976 KB
testcase_19 AC 199 ms
82,816 KB
testcase_20 AC 66 ms
76,032 KB
testcase_21 AC 235 ms
87,552 KB
testcase_22 AC 141 ms
82,304 KB
testcase_23 AC 115 ms
79,616 KB
testcase_24 AC 51 ms
63,616 KB
testcase_25 AC 62 ms
73,728 KB
testcase_26 AC 106 ms
81,024 KB
testcase_27 AC 133 ms
80,000 KB
testcase_28 AC 221 ms
85,504 KB
testcase_29 AC 98 ms
82,944 KB
testcase_30 AC 106 ms
80,384 KB
testcase_31 AC 59 ms
70,016 KB
testcase_32 AC 144 ms
81,932 KB
testcase_33 AC 124 ms
82,176 KB
testcase_34 AC 57 ms
69,192 KB
testcase_35 AC 74 ms
77,184 KB
testcase_36 AC 403 ms
98,304 KB
testcase_37 AC 86 ms
91,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from sys import stdin
pin=stdin.readline

def lcs(N,M,check):
  dp=[[0]*(M+1)for _ in[0]*(N+1)]
  for i in range(1,N+1):
    for j in range(1,M+1):
      if check[i-1][j-1]==1:
        dp[i][j]=dp[i-1][j-1]+1
      else:
        dp[i][j]=max(dp[i-1][j],dp[i][j-1])
  return dp[N][M]

def main():
  N,M,Q=map(int,pin().split())
  check=[[0]*M for _ in[0]*N]
  for _ in[0]*Q:
    a,b=map(int,pin().split())
    check[a-1][b-1]=1
  print(lcs(N,M,check))
  return

main()
0