結果

問題 No.1703 Much Matching
ユーザー vwxyzvwxyz
提出日時 2021-10-08 22:21:47
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,323 bytes
コンパイル時間 160 ms
コンパイル使用メモリ 82,604 KB
実行使用メモリ 239,056 KB
最終ジャッジ日時 2024-07-23 04:54:19
合計ジャッジ時間 28,889 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 152 ms
95,232 KB
testcase_01 AC 150 ms
89,728 KB
testcase_02 AC 151 ms
89,984 KB
testcase_03 AC 152 ms
89,728 KB
testcase_04 AC 155 ms
90,112 KB
testcase_05 AC 155 ms
89,832 KB
testcase_06 AC 1,304 ms
137,616 KB
testcase_07 AC 210 ms
92,800 KB
testcase_08 AC 1,375 ms
138,504 KB
testcase_09 AC 1,585 ms
145,276 KB
testcase_10 AC 310 ms
97,024 KB
testcase_11 AC 404 ms
101,056 KB
testcase_12 AC 199 ms
91,904 KB
testcase_13 AC 642 ms
109,524 KB
testcase_14 AC 173 ms
90,624 KB
testcase_15 AC 349 ms
98,952 KB
testcase_16 AC 893 ms
119,028 KB
testcase_17 AC 999 ms
123,860 KB
testcase_18 AC 175 ms
90,752 KB
testcase_19 TLE -
testcase_20 AC 335 ms
98,432 KB
testcase_21 TLE -
testcase_22 AC 922 ms
121,880 KB
testcase_23 AC 726 ms
114,636 KB
testcase_24 AC 171 ms
90,880 KB
testcase_25 AC 216 ms
93,012 KB
testcase_26 AC 499 ms
105,436 KB
testcase_27 AC 1,083 ms
128,160 KB
testcase_28 TLE -
testcase_29 AC 442 ms
102,308 KB
testcase_30 AC 588 ms
108,764 KB
testcase_31 AC 192 ms
91,580 KB
testcase_32 AC 1,054 ms
126,992 KB
testcase_33 AC 710 ms
112,696 KB
testcase_34 AC 201 ms
92,032 KB
testcase_35 AC 280 ms
95,756 KB
testcase_36 TLE -
testcase_37 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import bisect
import copy
import decimal
import fractions
import functools
import heapq
import itertools
import math
import random
import sys
from collections import Counter,deque,defaultdict
from functools import lru_cache,reduce
from heapq import heappush,heappop,heapify,heappushpop,_heappop_max,_heapify_max
def _heappush_max(heap,item):
    heap.append(item)
    heapq._siftdown_max(heap, 0, len(heap)-1)
def _heappushpop_max(heap, item):
    if heap and item < heap[0]:
        item, heap[0] = heap[0], item
        heapq._siftup_max(heap, 0)
    return item
from math import gcd as GCD
read=sys.stdin.read
readline=sys.stdin.readline
readlines=sys.stdin.readlines

def LIS(lst,weakly=False,max_value=float('inf')):
    f=bisect.bisect_right if weakly else bisect.bisect_left
    N=len(lst)
    update=[None]*N
    dp=[max_value]*N
    for k,x in enumerate(lst):
        i=f(dp,x)
        dp[i]=x
        update[k]=(i,dp[i])
    n=bisect.bisect_left(dp,max_value)
    lis=[None]*n
    n-=1
    for i,x in update[::-1]:
        if i==n:
            lis[n]=x
            n-=1
    return lis

N,M,Q=map(int,readline().split())
AB=[]
for _ in range(Q):
    a,b=map(int,readline().split())
    AB.append((a,b))
AB.sort(key=lambda tpl:(tpl[0],-tpl[1]))
B=[b for a,b in AB]
inf=1<<60
ans=len(LIS(B,max_value=inf))
print(ans)
0