結果

問題 No.1703 Much Matching
ユーザー Kiri8128Kiri8128
提出日時 2021-10-08 22:44:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 656 ms / 2,000 ms
コード長 342 bytes
コンパイル時間 457 ms
コンパイル使用メモリ 82,260 KB
実行使用メモリ 141,528 KB
最終ジャッジ日時 2024-07-23 05:50:31
合計ジャッジ時間 7,742 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,224 KB
testcase_01 AC 37 ms
51,840 KB
testcase_02 AC 37 ms
52,096 KB
testcase_03 AC 46 ms
62,848 KB
testcase_04 AC 49 ms
64,000 KB
testcase_05 AC 50 ms
65,792 KB
testcase_06 AC 208 ms
86,912 KB
testcase_07 AC 78 ms
76,672 KB
testcase_08 AC 225 ms
87,808 KB
testcase_09 AC 247 ms
89,600 KB
testcase_10 AC 92 ms
76,808 KB
testcase_11 AC 108 ms
77,208 KB
testcase_12 AC 78 ms
76,540 KB
testcase_13 AC 139 ms
78,720 KB
testcase_14 AC 66 ms
71,552 KB
testcase_15 AC 106 ms
76,840 KB
testcase_16 AC 157 ms
81,152 KB
testcase_17 AC 182 ms
82,944 KB
testcase_18 AC 67 ms
71,040 KB
testcase_19 AC 308 ms
99,264 KB
testcase_20 AC 93 ms
76,544 KB
testcase_21 AC 363 ms
104,192 KB
testcase_22 AC 175 ms
81,536 KB
testcase_23 AC 153 ms
79,744 KB
testcase_24 AC 67 ms
70,528 KB
testcase_25 AC 83 ms
76,672 KB
testcase_26 AC 128 ms
77,440 KB
testcase_27 AC 189 ms
83,328 KB
testcase_28 AC 304 ms
96,384 KB
testcase_29 AC 115 ms
77,552 KB
testcase_30 AC 133 ms
79,004 KB
testcase_31 AC 80 ms
76,416 KB
testcase_32 AC 187 ms
83,328 KB
testcase_33 AC 161 ms
79,744 KB
testcase_34 AC 79 ms
76,672 KB
testcase_35 AC 94 ms
77,088 KB
testcase_36 AC 656 ms
141,528 KB
testcase_37 AC 63 ms
73,272 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M, Q = map(int, input().split())
X = [[] for _ in range(N)]
for _ in range(Q):
    a, b = map(int, input().split())
    X[a-1].append(b - 1)

Y = [0] * (M + 1)
for i, x in enumerate(X):
    nY = Y[:]
    for b in x:
        nY[b+1] = max(nY[b+1], Y[b] + 1)
    Y = nY
    for i in range(M):
        Y[i+1] = max(Y[i+1], Y[i])
print(max(Y))
0