結果

問題 No.1703 Much Matching
ユーザー harurunharurun
提出日時 2021-10-02 02:35:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 705 ms / 2,000 ms
コード長 518 bytes
コンパイル時間 182 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 88,064 KB
最終ジャッジ日時 2024-07-23 03:47:36
合計ジャッジ時間 7,902 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,024 KB
testcase_01 AC 38 ms
53,552 KB
testcase_02 AC 41 ms
53,916 KB
testcase_03 AC 54 ms
66,140 KB
testcase_04 AC 57 ms
66,736 KB
testcase_05 AC 60 ms
72,036 KB
testcase_06 AC 248 ms
79,732 KB
testcase_07 AC 83 ms
76,660 KB
testcase_08 AC 284 ms
88,064 KB
testcase_09 AC 297 ms
85,420 KB
testcase_10 AC 103 ms
79,064 KB
testcase_11 AC 129 ms
79,684 KB
testcase_12 AC 84 ms
77,056 KB
testcase_13 AC 162 ms
79,112 KB
testcase_14 AC 72 ms
73,828 KB
testcase_15 AC 132 ms
81,332 KB
testcase_16 AC 182 ms
78,420 KB
testcase_17 AC 202 ms
79,256 KB
testcase_18 AC 67 ms
70,976 KB
testcase_19 AC 344 ms
84,024 KB
testcase_20 AC 95 ms
77,016 KB
testcase_21 AC 396 ms
81,444 KB
testcase_22 AC 214 ms
81,768 KB
testcase_23 AC 177 ms
82,092 KB
testcase_24 AC 69 ms
72,892 KB
testcase_25 AC 91 ms
78,364 KB
testcase_26 AC 154 ms
81,792 KB
testcase_27 AC 214 ms
81,420 KB
testcase_28 AC 364 ms
83,660 KB
testcase_29 AC 139 ms
83,352 KB
testcase_30 AC 160 ms
82,328 KB
testcase_31 AC 89 ms
78,892 KB
testcase_32 AC 231 ms
82,092 KB
testcase_33 AC 190 ms
85,700 KB
testcase_34 AC 84 ms
77,056 KB
testcase_35 AC 106 ms
77,968 KB
testcase_36 AC 705 ms
85,052 KB
testcase_37 AC 99 ms
87,640 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def lcs(S,T,A):
  dp=[[0]*(len(T)+1)for _ in[0]*(len(S)+1)]
  for i in range(1,len(S)+1):
    for j in range(1,len(T)+1):
      if A[S[i-1]][T[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])
  length=dp[len(S)][len(T)]
  return length

def main():
  N,M,Q=map(int,input().split())
  A=[[0]*M for i in range(N)]
  for i in range(Q):
    a,b=map(int,input().split())
    A[a-1][b-1]=1
  S=list(range(N))
  T=list(range(M))
  ans=lcs(S,T,A)
  print(ans)
  return

main()
0