結果
問題 | No.1703 Much Matching |
ユーザー | tassei903 |
提出日時 | 2021-10-08 23:12:54 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,827 bytes |
コンパイル時間 | 186 ms |
コンパイル使用メモリ | 82,404 KB |
実行使用メモリ | 145,916 KB |
最終ジャッジ日時 | 2024-07-23 06:58:42 |
合計ジャッジ時間 | 9,386 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 40 ms
52,336 KB |
testcase_01 | AC | 42 ms
53,360 KB |
testcase_02 | AC | 42 ms
53,476 KB |
testcase_03 | AC | 41 ms
53,016 KB |
testcase_04 | AC | 56 ms
64,528 KB |
testcase_05 | AC | 48 ms
60,732 KB |
testcase_06 | WA | - |
testcase_07 | RE | - |
testcase_08 | WA | - |
testcase_09 | AC | 372 ms
94,096 KB |
testcase_10 | WA | - |
testcase_11 | AC | 149 ms
78,308 KB |
testcase_12 | WA | - |
testcase_13 | AC | 197 ms
80,872 KB |
testcase_14 | WA | - |
testcase_15 | AC | 141 ms
78,092 KB |
testcase_16 | WA | - |
testcase_17 | AC | 263 ms
85,832 KB |
testcase_18 | WA | - |
testcase_19 | AC | 460 ms
102,892 KB |
testcase_20 | WA | - |
testcase_21 | AC | 549 ms
107,572 KB |
testcase_22 | WA | - |
testcase_23 | AC | 217 ms
82,680 KB |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | AC | 273 ms
86,852 KB |
testcase_28 | AC | 461 ms
99,824 KB |
testcase_29 | AC | 160 ms
78,728 KB |
testcase_30 | WA | - |
testcase_31 | RE | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | RE | - |
testcase_36 | AC | 986 ms
145,916 KB |
testcase_37 | AC | 63 ms
67,584 KB |
ソースコード
import sys input = lambda :sys.stdin.readline()[:-1] ni = lambda :int(input()) na = lambda :list(map(int,input().split())) sys.setrecursionlimit(10**7) yes = lambda :print("yes");Yes = lambda :print("Yes");YES = lambda : print("YES") no = lambda :print("no");No = lambda :print("No");NO = lambda : print("NO") ####################################################################### class SegmentTree: # 初期化処理 # f : SegmentTreeにのせるモノイド # default : fに対する単位元 def __init__(self, size, f=lambda x,y : x+y, default=0): self.size = 2**(size-1).bit_length() # 簡単のため要素数Nを2冪にする self.default = default self.dat = [default]*(self.size*2) # 要素を単位元で初期化 self.f = f def update(self, i, x): i += self.size self.dat[i] = max(self.dat[i], x) while i > 0: i >>= 1 self.dat[i] = self.f(self.dat[i*2], self.dat[i*2+1]) def query(self, l, r): l += self.size r += self.size lres, rres = self.default, self.default while l < r: if l & 1: lres = self.f(lres, self.dat[l]) l += 1 if r & 1: r -= 1 rres = self.f(self.dat[r], rres) # モノイドでは可換律は保証されていないので演算の方向に注意 l >>= 1 r >>= 1 res = self.f(lres, rres) return res n,m,q = na() g = [[] for i in range(n+1)] for i in range(q): a,b = na() g[a].append(b) st = SegmentTree(m+1, max, default = 0) for i in range(1,n+1): c = [] for j in g[i]: c.append(st.query(0, j)) for t, j in enumerate(g[i]): st.update(j, c[t]+1) #print(st.dat) print(st.query(0, n+1))