結果
問題 | No.655 E869120 and Good Triangles |
ユーザー | vwxyz |
提出日時 | 2022-06-29 05:09:18 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,799 bytes |
コンパイル時間 | 502 ms |
コンパイル使用メモリ | 82,688 KB |
実行使用メモリ | 364,000 KB |
最終ジャッジ日時 | 2024-11-22 01:28:44 |
合計ジャッジ時間 | 55,856 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 43 ms
55,056 KB |
testcase_01 | AC | 43 ms
54,808 KB |
testcase_02 | AC | 44 ms
55,804 KB |
testcase_03 | AC | 44 ms
55,320 KB |
testcase_04 | AC | 45 ms
56,040 KB |
testcase_05 | AC | 44 ms
55,524 KB |
testcase_06 | AC | 48 ms
54,508 KB |
testcase_07 | AC | 43 ms
54,972 KB |
testcase_08 | AC | 43 ms
55,364 KB |
testcase_09 | AC | 44 ms
56,276 KB |
testcase_10 | TLE | - |
testcase_11 | TLE | - |
testcase_12 | TLE | - |
testcase_13 | TLE | - |
testcase_14 | TLE | - |
testcase_15 | TLE | - |
testcase_16 | TLE | - |
testcase_17 | TLE | - |
testcase_18 | TLE | - |
testcase_19 | TLE | - |
testcase_20 | TLE | - |
testcase_21 | TLE | - |
testcase_22 | TLE | - |
testcase_23 | TLE | - |
testcase_24 | AC | 1,905 ms
342,512 KB |
testcase_25 | AC | 1,747 ms
342,768 KB |
testcase_26 | AC | 1,793 ms
342,644 KB |
testcase_27 | AC | 2,046 ms
342,264 KB |
testcase_28 | AC | 1,790 ms
340,852 KB |
testcase_29 | AC | 2,106 ms
341,496 KB |
testcase_30 | AC | 45 ms
54,400 KB |
testcase_31 | AC | 44 ms
54,528 KB |
testcase_32 | AC | 44 ms
55,932 KB |
ソースコード
import sys from collections import deque readline=sys.stdin.readline N,K,P=map(int,readline().split()) inf=1<<30 A=[[inf]*(i+1) for i in range(N)] queue=deque([]) for _ in range(K): x,y=map(int,readline().split()) x-=1;y-=1 queue.append((x,y)) A[x][y]=0 while queue: x,y=queue.popleft() if 0<=y-1<=x-1<N and A[x][y]+1<A[x-1][y-1]: A[x-1][y-1]=A[x][y]+1 queue.append((x-1,y-1)) if 0<=y<=x-1<N and A[x][y]+1<A[x-1][y]: A[x-1][y]=A[x][y]+1 queue.append((x-1,y)) if 0<=y-1<=x<N and A[x][y]+1<A[x][y-1]: A[x][y-1]=A[x][y]+1 queue.append((x,y-1)) if 0<=y+1<=x<N and A[x][y]+1<A[x][y+1]: A[x][y+1]=A[x][y]+1 queue.append((x,y+1)) if 0<=y<=x+1<N and A[x][y]+1<A[x+1][y]: A[x+1][y]=A[x][y]+1 queue.append((x+1,y)) if 0<=y+1<=x+1<N and A[x][y]+1<A[x+1][y+1]: A[x+1][y+1]=A[x][y]+1 queue.append((x+1,y+1)) AL=[[A[i][j] for j in range(i+1)] for i in range(N)] AR=[[A[i][j] for j in range(i+1)] for i in range(N)] for i in range(1,N): for j in range(i): AL[i][j]+=AL[i-1][j] for i in range(1,N): for j in range(1,i+1): AR[i][j]+=AR[i-1][j-1] for i in range(N): A[i]=[0]+A[i] for j in range(1,i+2): A[i][j]+=A[i][j-1] ans=0 dp=[(0,0)] for i in range(N): prev=dp dp=[(0,0)]*(i+2) for j in range(i+1): ii,s=prev[j] while ii<N and s<P: s+=A[ii][j-i+ii+1]-A[ii][j] ii+=1 prev[j]=(ii,s) if i!=N-1: dp[j]=max(dp[j],(ii,s-(AR[ii-1][j-i+ii-1]-(AR[i-1][j-1] if i and j else 0)))) dp[j+1]=max(dp[j+1],(ii,s-(AL[ii-1][j]-(AL[i-1][j] if i and i!=j else 0)))) for j in range(i+1): if prev[j][1]>=P: ans+=N-prev[j][0]+1 print(ans)