結果

問題 No.1703 Much Matching
ユーザー ygd.ygd.
提出日時 2021-10-10 11:35:09
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 2,137 bytes
コンパイル時間 308 ms
コンパイル使用メモリ 87,120 KB
実行使用メモリ 172,112 KB
最終ジャッジ日時 2023-10-12 06:31:50
合計ジャッジ時間 10,697 ms
ジャッジサーバーID
(参考情報)
judge13 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 99 ms
71,648 KB
testcase_01 AC 90 ms
71,748 KB
testcase_02 AC 91 ms
71,588 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 316 ms
95,052 KB
testcase_07 AC 144 ms
79,120 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 161 ms
80,568 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 133 ms
78,608 KB
testcase_15 WA -
testcase_16 AC 245 ms
88,440 KB
testcase_17 AC 263 ms
90,408 KB
testcase_18 AC 126 ms
78,452 KB
testcase_19 AC 426 ms
109,284 KB
testcase_20 AC 161 ms
80,688 KB
testcase_21 AC 497 ms
116,644 KB
testcase_22 AC 274 ms
90,156 KB
testcase_23 AC 228 ms
86,472 KB
testcase_24 AC 129 ms
78,404 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 283 ms
90,916 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 AC 854 ms
172,112 KB
testcase_37 AC 115 ms
76,972 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
#input = sys.stdin.readline
input = sys.stdin.buffer.readline
from collections import defaultdict 

class SegmentTree(object):
    def __init__(self, A, dot, unit):
        n = 1 << (len(A) - 1).bit_length()
        tree = [unit] * (2 * n)
        for i, v in enumerate(A):
            tree[i + n] = v
        for i in range(n - 1, 0, -1):
            tree[i] = dot(tree[i << 1], tree[i << 1 | 1])
        self._n = n
        self._tree = tree
        self._dot = dot
        self._unit = unit

    def __getitem__(self, i):
        return self._tree[i + self._n]

    def update(self, i, v):
        i += self._n
        self._tree[i] = v
        while i != 1:
            i >>= 1
            self._tree[i] = self._dot(self._tree[i << 1], self._tree[i << 1 | 1])

    def add(self, i, v):
        self.update(i, self[i] + v)

    def sum(self, l, r): #これで[l,r)から取り出す。
        l += self._n
        r += self._n
        l_val = r_val = self._unit
        while l < r:
            if l & 1:
                l_val = self._dot(l_val, self._tree[l])
                l += 1
            if r & 1:
                r -= 1
                r_val = self._dot(self._tree[r], r_val)
            l >>= 1
            r >>= 1
        return self._dot(l_val, r_val)

def main():
    N,M,Q = map(int,input().split())
    G = [[] for _ in range(Q)]
    #L = []
    dic = defaultdict(list)
    for i in range(Q):
        a,b = map(int,input().split())
        #a -= 1; b -= 1
        #L.append((a,b)) #man,woman,index
        dic[a].append(b)
    #print(dic)
    Tree = SegmentTree([0]*(M+1),max,0) #womanがyの時の最大値
    for x in dic:
        L = sorted(dic[x])
        #print(L)
        val = []
        #if len(L) == 0: continue
        for y in L:
            temp = max(Tree.sum(0,y) + 1, Tree.__getitem__(y))
            #print(val)
            val.append(temp)
        for i in range(len(val)):
            y = L[i]
            v = val[i]
            Tree.update(y,v)
    ans = 0
    for i in range(M+1):
        ans = max(ans,Tree.__getitem__(i))
    print(ans)
        

if __name__ == '__main__':
    main()
0