結果

問題 No.1170 Never Want to Walk
ユーザー いたいた
提出日時 2024-12-30 18:43:59
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 804 bytes
コンパイル時間 307 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 159,784 KB
最終ジャッジ日時 2024-12-30 18:44:29
合計ジャッジ時間 30,319 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
58,880 KB
testcase_01 AC 49 ms
156,032 KB
testcase_02 AC 51 ms
59,136 KB
testcase_03 AC 49 ms
156,708 KB
testcase_04 AC 53 ms
59,136 KB
testcase_05 AC 50 ms
156,076 KB
testcase_06 AC 48 ms
59,264 KB
testcase_07 AC 53 ms
156,164 KB
testcase_08 AC 52 ms
59,008 KB
testcase_09 AC 50 ms
155,600 KB
testcase_10 AC 51 ms
59,392 KB
testcase_11 AC 56 ms
159,784 KB
testcase_12 AC 90 ms
75,776 KB
testcase_13 AC 107 ms
76,032 KB
testcase_14 AC 107 ms
76,672 KB
testcase_15 AC 88 ms
71,424 KB
testcase_16 AC 92 ms
73,344 KB
testcase_17 AC 109 ms
76,928 KB
testcase_18 AC 82 ms
70,400 KB
testcase_19 AC 90 ms
73,984 KB
testcase_20 AC 113 ms
77,056 KB
testcase_21 AC 90 ms
71,552 KB
testcase_22 AC 124 ms
76,800 KB
testcase_23 AC 123 ms
76,544 KB
testcase_24 AC 133 ms
76,544 KB
testcase_25 AC 129 ms
76,800 KB
testcase_26 AC 136 ms
76,928 KB
testcase_27 AC 645 ms
101,764 KB
testcase_28 AC 535 ms
101,904 KB
testcase_29 AC 623 ms
102,568 KB
testcase_30 AC 533 ms
102,504 KB
testcase_31 AC 584 ms
102,396 KB
testcase_32 TLE -
testcase_33 TLE -
testcase_34 TLE -
testcase_35 TLE -
testcase_36 TLE -
testcase_37 TLE -
testcase_38 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import bisect
from collections import deque


N,A,B=map(int,input().split())
x=list(map(int,input().split()))
x.sort()
ne=[-1]*N
def root(N):
  if ne[N]<0:
    return N
  else:
    ne[N]=root(ne[N])
    return ne[N]
def merge(x,y):
  x,y=root(x),root(y)
  if ne[x]>ne[y]:
    x,y=y,x
  ne[x]+=ne[y]
  ne[y]=x
def same(x,y):
  return root(x)==root(y)
q=deque()
for i in range(N):
  eru=bisect.bisect_left(x,x[i]+A)
  aru=bisect.bisect_right(x,x[i]+B)
  for v in range(eru,aru):
    if same(i,v):
      continue
    merge(i,v)
    q.append(v)
    while q:
      n=q.popleft()
      eru=bisect.bisect_left(x,x[n]+A)
      aru=bisect.bisect_right(x,x[n]+B)
      for v in range(eru,aru):
        if same(n,v):
          continue
        merge(n,v)
        q.append(v)
for i in range(N):
  print(-ne[root(i)])
0