結果

問題 No.1703 Much Matching
ユーザー harurunharurun
提出日時 2021-09-03 14:38:38
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,342 ms / 2,000 ms
コード長 468 bytes
コンパイル時間 209 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 43,948 KB
最終ジャッジ日時 2024-07-23 03:29:17
合計ジャッジ時間 13,094 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,624 KB
testcase_01 AC 32 ms
10,496 KB
testcase_02 AC 32 ms
10,624 KB
testcase_03 AC 154 ms
14,720 KB
testcase_04 AC 106 ms
13,440 KB
testcase_05 AC 279 ms
19,328 KB
testcase_06 AC 426 ms
19,040 KB
testcase_07 AC 57 ms
11,520 KB
testcase_08 AC 612 ms
26,452 KB
testcase_09 AC 549 ms
23,504 KB
testcase_10 AC 125 ms
13,132 KB
testcase_11 AC 253 ms
16,960 KB
testcase_12 AC 68 ms
11,904 KB
testcase_13 AC 254 ms
15,868 KB
testcase_14 AC 40 ms
11,008 KB
testcase_15 AC 346 ms
20,296 KB
testcase_16 AC 256 ms
14,768 KB
testcase_17 AC 302 ms
15,700 KB
testcase_18 AC 35 ms
10,624 KB
testcase_19 AC 600 ms
23,316 KB
testcase_20 AC 89 ms
11,648 KB
testcase_21 AC 738 ms
26,564 KB
testcase_22 AC 510 ms
23,108 KB
testcase_23 AC 301 ms
17,060 KB
testcase_24 AC 40 ms
11,008 KB
testcase_25 AC 113 ms
13,308 KB
testcase_26 AC 390 ms
21,092 KB
testcase_27 AC 323 ms
15,692 KB
testcase_28 AC 790 ms
30,412 KB
testcase_29 AC 275 ms
17,800 KB
testcase_30 AC 296 ms
17,904 KB
testcase_31 AC 104 ms
13,568 KB
testcase_32 AC 444 ms
21,316 KB
testcase_33 AC 452 ms
22,872 KB
testcase_34 AC 56 ms
11,392 KB
testcase_35 AC 125 ms
13,304 KB
testcase_36 AC 1,342 ms
43,948 KB
testcase_37 AC 500 ms
26,624 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