結果

問題 No.1703 Much Matching
ユーザー chineristACchineristAC
提出日時 2021-10-08 22:17:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 402 ms / 2,000 ms
コード長 540 bytes
コンパイル時間 169 ms
コンパイル使用メモリ 82,316 KB
実行使用メモリ 140,096 KB
最終ジャッジ日時 2024-07-23 04:47:13
合計ジャッジ時間 5,774 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
56,164 KB
testcase_01 AC 44 ms
57,036 KB
testcase_02 AC 44 ms
57,660 KB
testcase_03 AC 59 ms
69,292 KB
testcase_04 AC 56 ms
68,104 KB
testcase_05 AC 59 ms
70,848 KB
testcase_06 AC 143 ms
86,176 KB
testcase_07 AC 72 ms
77,708 KB
testcase_08 AC 162 ms
86,768 KB
testcase_09 AC 170 ms
89,368 KB
testcase_10 AC 79 ms
77,616 KB
testcase_11 AC 92 ms
78,260 KB
testcase_12 AC 66 ms
75,160 KB
testcase_13 AC 108 ms
79,016 KB
testcase_14 AC 60 ms
70,372 KB
testcase_15 AC 96 ms
78,460 KB
testcase_16 AC 115 ms
80,296 KB
testcase_17 AC 130 ms
82,152 KB
testcase_18 AC 62 ms
69,996 KB
testcase_19 AC 203 ms
98,052 KB
testcase_20 AC 78 ms
77,388 KB
testcase_21 AC 233 ms
101,912 KB
testcase_22 AC 132 ms
82,240 KB
testcase_23 AC 115 ms
80,684 KB
testcase_24 AC 59 ms
70,452 KB
testcase_25 AC 76 ms
77,648 KB
testcase_26 AC 104 ms
79,236 KB
testcase_27 AC 133 ms
82,372 KB
testcase_28 AC 200 ms
95,040 KB
testcase_29 AC 92 ms
78,192 KB
testcase_30 AC 104 ms
79,340 KB
testcase_31 AC 77 ms
77,944 KB
testcase_32 AC 135 ms
83,940 KB
testcase_33 AC 116 ms
80,484 KB
testcase_34 AC 66 ms
74,992 KB
testcase_35 AC 81 ms
77,820 KB
testcase_36 AC 402 ms
140,096 KB
testcase_37 AC 76 ms
77,400 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys,random
from collections import deque
from heapq import heappush,heappop

input = lambda :sys.stdin.readline().rstrip()
mi = lambda :map(int,input().split())
li = lambda :list(mi())

N,M,Q = mi()

pair = [[] for i in range(N+1)]
for _ in range(Q):
    a,b = mi()
    pair[a].append(b)

INF = 10**9
dp = [0 for w in range(M+1)]
for i in range(N):
    ndp = [x for x in dp]
    for w in pair[i+1]:
        ndp[w] = max(ndp[w],dp[w-1]+1)
    dp = ndp
    for w in range(1,M+1):
        dp[w] = max(dp[w],dp[w-1])

print(max(dp))




0