結果

問題 No.1170 Never Want to Walk
ユーザー しもりんしもりん
提出日時 2024-10-25 03:41:01
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 851 bytes
コンパイル時間 344 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 38,984 KB
最終ジャッジ日時 2024-10-25 03:41:15
合計ジャッジ時間 13,767 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
18,084 KB
testcase_01 AC 30 ms
10,880 KB
testcase_02 AC 32 ms
10,880 KB
testcase_03 AC 31 ms
11,008 KB
testcase_04 AC 30 ms
11,008 KB
testcase_05 AC 30 ms
11,008 KB
testcase_06 AC 31 ms
11,136 KB
testcase_07 AC 32 ms
11,008 KB
testcase_08 AC 32 ms
11,008 KB
testcase_09 AC 31 ms
11,008 KB
testcase_10 AC 30 ms
10,880 KB
testcase_11 AC 30 ms
11,008 KB
testcase_12 AC 35 ms
11,264 KB
testcase_13 AC 35 ms
11,136 KB
testcase_14 AC 34 ms
11,136 KB
testcase_15 AC 33 ms
11,264 KB
testcase_16 AC 32 ms
11,264 KB
testcase_17 AC 33 ms
11,008 KB
testcase_18 AC 31 ms
11,136 KB
testcase_19 AC 31 ms
11,136 KB
testcase_20 AC 34 ms
11,264 KB
testcase_21 AC 32 ms
11,136 KB
testcase_22 AC 291 ms
11,264 KB
testcase_23 AC 106 ms
11,264 KB
testcase_24 AC 285 ms
11,136 KB
testcase_25 AC 305 ms
11,136 KB
testcase_26 AC 200 ms
11,136 KB
testcase_27 AC 1,064 ms
32,588 KB
testcase_28 AC 1,118 ms
31,820 KB
testcase_29 AC 990 ms
32,572 KB
testcase_30 AC 1,082 ms
32,860 KB
testcase_31 AC 1,051 ms
32,252 KB
testcase_32 TLE -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict,Counter,deque
from heapq import heappush,heappop,heapify
from bisect import bisect,bisect_left
from itertools import product,permutations,combinations,combinations_with_replacement
from math import gcd
import sys
from functools import lru_cache
if len(sys.argv)==2:sys.stdin=open(sys.argv[1])
input=sys.stdin.readline
sys.setrecursionlimit(10**9)

N,A,B=map(int,input().split())
X=list(map(int,input().split()))
C=[-1]*N
c=0
q=[]
ans=dict()
for i,x in enumerate(X):
	if C[i]<0:
		res=0
		q.append(i)
		C[i]=c
		while q:
			i=q.pop()
			res+=1
			x=X[i]
			j=bisect(X,x-A)-1
			while j>=0 and x-X[j]<=B:
				if C[j]<0:
					C[j]=c
					q.append(j)
				j-=1
			j=bisect_left(X,x+A)
			while j<N and X[j]-x<=B:
				if C[j]<0:
					C[j]=c
					q.append(j)
				j+=1
		ans[c]=res
		c+=1
	else:
		res=ans[C[i]]
	print(res)
0