結果

問題 No.2696 Sign Creation
ユーザー katonyonkokatonyonko
提出日時 2024-03-22 22:47:52
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 2,269 bytes
コンパイル時間 189 ms
コンパイル使用メモリ 82,116 KB
実行使用メモリ 228,896 KB
最終ジャッジ日時 2024-05-17 18:16:07
合計ジャッジ時間 8,039 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
64,104 KB
testcase_01 AC 47 ms
63,380 KB
testcase_02 AC 40 ms
56,060 KB
testcase_03 AC 46 ms
62,440 KB
testcase_04 AC 41 ms
55,872 KB
testcase_05 AC 43 ms
63,336 KB
testcase_06 WA -
testcase_07 AC 40 ms
55,584 KB
testcase_08 AC 125 ms
78,676 KB
testcase_09 AC 71 ms
74,736 KB
testcase_10 AC 105 ms
78,144 KB
testcase_11 AC 81 ms
76,952 KB
testcase_12 AC 83 ms
77,168 KB
testcase_13 AC 429 ms
89,600 KB
testcase_14 AC 251 ms
83,320 KB
testcase_15 WA -
testcase_16 AC 399 ms
91,564 KB
testcase_17 AC 180 ms
77,624 KB
testcase_18 WA -
testcase_19 AC 242 ms
81,952 KB
testcase_20 AC 88 ms
77,024 KB
testcase_21 AC 232 ms
83,952 KB
testcase_22 AC 243 ms
78,624 KB
testcase_23 AC 258 ms
82,476 KB
testcase_24 AC 246 ms
82,364 KB
testcase_25 WA -
testcase_26 AC 204 ms
77,932 KB
testcase_27 AC 226 ms
78,328 KB
testcase_28 AC 196 ms
78,548 KB
testcase_29 AC 192 ms
77,964 KB
testcase_30 AC 190 ms
78,044 KB
testcase_31 AC 1,254 ms
228,896 KB
testcase_32 AC 48 ms
61,840 KB
testcase_33 AC 61 ms
71,764 KB
testcase_34 AC 58 ms
70,064 KB
testcase_35 AC 41 ms
56,404 KB
testcase_36 AC 41 ms
57,112 KB
testcase_37 AC 41 ms
55,876 KB
testcase_38 AC 40 ms
55,820 KB
testcase_39 WA -
testcase_40 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import io
import sys
from collections import defaultdict, deque, Counter
from itertools import permutations, combinations, accumulate
from heapq import heappush, heappop
from bisect import bisect_right, bisect_left
from math import gcd
import math

_INPUT = """\
6
10 10 5 2
1 4
2 3
3 3
6 3
6 2
10 10 2 2
3 3
6 3
1 5 4 4
1 1
1 2 
1 3
1 4
"""

def input():
  return sys.stdin.readline()[:-1]

def solve(test):
  H,W,N,D=map(int,input().split())
  field=[-1]*H*W
  G=[[] for _ in range(N)]
  for i in range(N):
    X,Y=map(lambda x:int(x)-1,input().split())
    for x in range(X-D,X+D+1):
      for y in range(Y-(D-abs(x-X)),Y+(D-abs(x-X))+1):
        if 0<=x<H and 0<=y<W and field[x*W+y]!=-1:
          G[i].append(field[x*W+y])
          G[field[x*W+y]].append(i)
    field[X*W+Y]=i
  inf=10**9
  E=[inf]*N
  C=[-1]*N
  c=0
  for i in range(N):
    if E[i]!=inf: continue
    E[i]=0
    C[i]=c
    dq=deque()
    dq.append(i)
    while dq:
      x=dq.popleft()
      for y in G[x]:
        if E[y]>E[x]+1:
          E[y]=E[x]+1
          C[y]=c
          dq.append(y)
    c+=1
  c-=len([1 for g in G if g==[]])
  ans1,ans2=10**9,0
  for i in range(H):
    for j in range(W):
      s=set()
      for x in range(i-D,i+D+1):
        for y in range(j-(D-abs(x-i)),j+(D-abs(x-i))+1):
          if 0<=x<H and 0<=y<W:
            if field[x*W+y]!=-1:
              s.add(C[field[x*W+y]])
      if len(s)==0: tmp=c
      else: tmp=c+1-len([1 for x in s if len(G[x])>0])
      ans1=min(ans1,tmp)
      ans2=max(ans2,tmp)
  print(ans1,ans2)

def random_input():
  from random import randint,shuffle
  N=randint(1,10)
  M=randint(1,N)
  A=list(range(1,M+1))+[randint(1,M) for _ in range(N-M)]
  shuffle(A)
  return (" ".join(map(str, [N,M]))+"\n"+" ".join(map(str, A))+"\n")*3

def simple_solve():
  return []

def main(test):
  if test==0:
    solve(0)
  elif test==1:
    sys.stdin = io.StringIO(_INPUT)
    case_no=int(input())
    for _ in range(case_no):
      solve(0)
  else:
    for i in range(1000):
      sys.stdin = io.StringIO(random_input())
      x=solve(1)
      y=simple_solve()
      if x!=y:
        print(i,x,y)
        print(*[line for line in sys.stdin],sep='')
        break

#0:提出用、1:与えられたテスト用、2:ストレステスト用
main(0)
0