結果
問題 | No.1703 Much Matching |
ユーザー | mkawa2 |
提出日時 | 2021-10-08 22:25:00 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,303 bytes |
コンパイル時間 | 97 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 140,220 KB |
最終ジャッジ日時 | 2024-07-23 04:58:21 |
合計ジャッジ時間 | 14,988 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 30 ms
16,000 KB |
testcase_01 | AC | 31 ms
10,752 KB |
testcase_02 | AC | 31 ms
10,752 KB |
testcase_03 | AC | 30 ms
10,752 KB |
testcase_04 | AC | 32 ms
10,752 KB |
testcase_05 | AC | 31 ms
10,752 KB |
testcase_06 | AC | 1,742 ms
86,624 KB |
testcase_07 | AC | 85 ms
14,464 KB |
testcase_08 | AC | 1,916 ms
92,804 KB |
testcase_09 | TLE | - |
testcase_10 | AC | 250 ms
22,528 KB |
testcase_11 | AC | 388 ms
30,012 KB |
testcase_12 | AC | 84 ms
13,696 KB |
testcase_13 | AC | 741 ms
45,480 KB |
testcase_14 | AC | 46 ms
11,648 KB |
testcase_15 | AC | 321 ms
26,496 KB |
testcase_16 | AC | 1,090 ms
58,284 KB |
testcase_17 | AC | 1,221 ms
66,380 KB |
testcase_18 | AC | 42 ms
11,392 KB |
testcase_19 | TLE | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
ソースコード
import sys sys.setrecursionlimit(200005) int1 = lambda x: int(x)-1 p2D = lambda x: print(*x, sep="\n") def II(): return int(sys.stdin.readline()) def LI(): return list(map(int, sys.stdin.readline().split())) def LI1(): return list(map(int1, sys.stdin.readline().split())) def LLI(rows_number): return [LI() for _ in range(rows_number)] def LLI1(rows_number): return [LI1() for _ in range(rows_number)] def SI(): return sys.stdin.readline().rstrip() # dij = [(0, 1), (-1, 0), (0, -1), (1, 0)] dij = [(0, 1), (1, 0), (0, -1), (-1, 0)] # dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)] inf = 10**19 # md = 998244353 md = 10**9+7 class BitMax: def __init__(self, n): self.inf = 10**16 self.n = n self.table = [-self.inf]*(self.n+1) def update(self, i, x): i += 1 while i <= self.n: if x > self.table[i]: self.table[i] = x i += i & -i def max(self, i): i += 1 res = -self.inf while i > 0: if self.table[i] > res: res = self.table[i] i -= i & -i return res n, m, q = LI() ab = LLI(q) ab.sort(key=lambda x: (x[0], -x[1])) bit = BitMax(m+5) bit.update(0, 0) for a, b in ab: pre = bit.max(b-1) bit.update(b, pre+1) print(bit.max(m+4))