結果

問題 No.1703 Much Matching
ユーザー harurunharurun
提出日時 2021-09-03 14:35:53
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 3,233 bytes
コンパイル時間 230 ms
コンパイル使用メモリ 13,312 KB
実行使用メモリ 295,336 KB
最終ジャッジ日時 2024-07-23 03:28:49
合計ジャッジ時間 20,793 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
11,264 KB
testcase_01 AC 32 ms
11,392 KB
testcase_02 AC 32 ms
11,264 KB
testcase_03 AC 148 ms
15,488 KB
testcase_04 AC 107 ms
14,080 KB
testcase_05 AC 269 ms
19,840 KB
testcase_06 AC 806 ms
83,120 KB
testcase_07 AC 74 ms
14,952 KB
testcase_08 AC 1,041 ms
95,788 KB
testcase_09 AC 1,033 ms
113,320 KB
testcase_10 AC 181 ms
24,020 KB
testcase_11 AC 340 ms
33,500 KB
testcase_12 AC 85 ms
14,976 KB
testcase_13 AC 429 ms
45,740 KB
testcase_14 AC 47 ms
12,032 KB
testcase_15 AC 421 ms
34,768 KB
testcase_16 AC 511 ms
59,992 KB
testcase_17 AC 601 ms
64,700 KB
testcase_18 AC 40 ms
12,032 KB
testcase_19 AC 1,243 ms
132,156 KB
testcase_20 AC 158 ms
23,972 KB
testcase_21 AC 1,456 ms
153,452 KB
testcase_22 AC 771 ms
73,572 KB
testcase_23 AC 503 ms
51,376 KB
testcase_24 AC 47 ms
12,160 KB
testcase_25 AC 137 ms
17,664 KB
testcase_26 AC 540 ms
45,896 KB
testcase_27 AC 637 ms
68,028 KB
testcase_28 AC 1,402 ms
137,728 KB
testcase_29 AC 383 ms
36,028 KB
testcase_30 AC 466 ms
45,932 KB
testcase_31 AC 119 ms
16,128 KB
testcase_32 AC 781 ms
76,788 KB
testcase_33 AC 678 ms
58,296 KB
testcase_34 AC 73 ms
14,576 KB
testcase_35 AC 175 ms
22,916 KB
testcase_36 TLE -
testcase_37 AC 496 ms
27,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from sys import stderr
perr=lambda x:stderr.write(str(x)+"\n")
class INPUT:
  def __init__(self):
    self._l=open(0).read().split()
    self._length=len(self._l)
    self._index=0
    return

  def stream(self,k=1,f=int,f2=False):
    assert(-1<k)
    if self._length==self._index or self._length-self._index<k:
      raise Exception("There is no input!")
    elif f!=str:
      if k==0:
        ret=list(map(f,self._l[self._index:]))
        self._index=self._length
        return ret
      if k==1 and not f2:
        ret=f(self._l[self._index])
        self._index+=1
        return ret
      if k==1 and f2:
        ret=[f(self._l[self._index])]
        self._index+=1
        return ret
      ret=[]
      for _ in [0]*k:
        ret.append(f(self._l[self._index]))
        self._index+=1
      return ret
    else:
      if k==0:
        ret=list(self._l[self._index:])
        self._index=self._length
        return ret
      if k==1 and not f2:
        ret=self._l[self._index]
        self._index+=1
        return ret
      if k==1 and f2:
        ret=[self._l[self._index]]
        self._index+=1
        return ret
      ret=[]
      for _ in [0]*k:
        ret.append(self._l[self._index])
        self._index+=1
      return ret
pin=INPUT().stream

#pin(number[default:1],f[default:int],f2[default:False])
#if number==0 -> return left all
#listを変数で受け取るとき、必ずlistをTrueにすること。

class dsu:
  def __init__(self,n):
    assert n>0,"n must be Natural"
    self.n=n
    self.parents=[-1]*n
    return
  
  def find(self,x):
    assert x<self.n,"warning!! this is 0 index"
    if self.parents[x]<0:
      return x
    self.parents[x]=self.find(self.parents[x])
    return self.parents[x]
  
  def merge(self,x,y):
    assert x<self.n and y<self.n,"warning!! this is 0 index"
    x=self.find(x)
    y=self.find(y)
    if x==y:
      return
    if self.parents[x]>self.parents[y]:
      x,y=y,x
    self.parents[x]+=self.parents[y]
    self.parents[y]=x
    return
    
  def size(self,x):
    assert x<self.n,"warning!! this is 0 index"
    return -self.parents[self.find(x)]
    
  def same(self,x,y):
    assert x<self.n and y<self.n,"warning!! this is 0 index"
    return self.find(x)==self.find(y)
  
  def leader(self,x):
    assert x<self.n,"warning!! this is 0 index"
    if self.parents[x]<0:
      return x
    self.parents[x]=self.leader(self.parents[x])
    return self.parents[x]
  
  def groups(self):
    ld=[self.leader(i) for i in range(self.n)]
    res=[[] for _ in range(self.n)]
    for i in range(self.n):
      res[ld[i]].append(i)
    return list(filter(lambda a:a !=[],res))
    
def lcs(N,M,check):
  dp=[[0]*(M+1)for _ in[0]*(N+1)]
  for i in range(1,N+1):
    for j in range(1,M+1):
      if check[i-1][j-1]==1:
        dp[i][j]=dp[i-1][j-1]+1
      else:
        dp[i][j]=max(dp[i-1][j],dp[i][j-1])
  return dp[N][M]
  
def main():
  N,M,Q=pin(3)
  check=[[0]*M for _ in[0]*N]
  assert(1<=N<=1000)
  assert(1<=M<=1000)
  assert(1<=Q<=N*M)
  validation_set=set()
  for _ in[0]*Q:
    a,b=pin(2)
    assert(1<=a<=N)
    assert(1<=b<=M)
    validation_set.add((a,b))
    check[a-1][b-1]=1
  assert(len(validation_set)==Q)
  print(lcs(N,M,check))
  return

main()
0