結果

問題 No.1703 Much Matching
ユーザー 👑 rin204rin204
提出日時 2022-01-23 01:10:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 802 ms / 2,000 ms
コード長 379 bytes
コンパイル時間 313 ms
コンパイル使用メモリ 81,396 KB
実行使用メモリ 211,528 KB
最終ジャッジ日時 2024-11-28 10:50:34
合計ジャッジ時間 8,145 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,840 KB
testcase_01 AC 35 ms
51,456 KB
testcase_02 AC 34 ms
52,096 KB
testcase_03 AC 35 ms
51,968 KB
testcase_04 AC 42 ms
59,264 KB
testcase_05 AC 38 ms
52,952 KB
testcase_06 AC 259 ms
104,192 KB
testcase_07 AC 80 ms
76,416 KB
testcase_08 AC 288 ms
107,648 KB
testcase_09 AC 313 ms
112,768 KB
testcase_10 AC 97 ms
78,208 KB
testcase_11 AC 122 ms
80,896 KB
testcase_12 AC 76 ms
76,800 KB
testcase_13 AC 158 ms
87,552 KB
testcase_14 AC 65 ms
74,624 KB
testcase_15 AC 109 ms
80,000 KB
testcase_16 AC 185 ms
90,624 KB
testcase_17 AC 227 ms
97,280 KB
testcase_18 AC 71 ms
75,904 KB
testcase_19 AC 391 ms
118,656 KB
testcase_20 AC 100 ms
79,488 KB
testcase_21 AC 458 ms
140,288 KB
testcase_22 AC 222 ms
94,592 KB
testcase_23 AC 177 ms
88,960 KB
testcase_24 AC 69 ms
72,704 KB
testcase_25 AC 85 ms
76,928 KB
testcase_26 AC 135 ms
83,840 KB
testcase_27 AC 229 ms
99,328 KB
testcase_28 AC 378 ms
126,208 KB
testcase_29 AC 124 ms
81,664 KB
testcase_30 AC 148 ms
85,376 KB
testcase_31 AC 76 ms
76,288 KB
testcase_32 AC 222 ms
99,328 KB
testcase_33 AC 182 ms
86,396 KB
testcase_34 AC 79 ms
76,288 KB
testcase_35 AC 93 ms
78,080 KB
testcase_36 AC 802 ms
211,528 KB
testcase_37 AC 51 ms
63,488 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import bisect_left

n, m, q = map(int, input().split())
lst = [[] for _ in range(n)]
for _ in range(q):
    x, y = map(int, input().split())
    lst[x - 1].append(y)
Y = []
for ls in lst:
    ls.sort(reverse = True)
    Y += ls

lst = []
for y in Y:
    p = bisect_left(lst, y)
    if p == len(lst):
        lst.append(y)
    else:
        lst[p] = y

print(len(lst))
0