結果

問題 No.1170 Never Want to Walk
ユーザー Navier_BoltzmannNavier_Boltzmann
提出日時 2022-10-05 04:07:04
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 2,065 bytes
コンパイル時間 665 ms
コンパイル使用メモリ 87,132 KB
実行使用メモリ 849,392 KB
最終ジャッジ日時 2023-08-29 21:58:03
合計ジャッジ時間 10,738 ms
ジャッジサーバーID
(参考情報)
judge12 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 105 ms
72,828 KB
testcase_01 AC 106 ms
72,944 KB
testcase_02 AC 105 ms
72,960 KB
testcase_03 AC 105 ms
73,064 KB
testcase_04 AC 103 ms
72,860 KB
testcase_05 AC 102 ms
72,800 KB
testcase_06 AC 105 ms
72,648 KB
testcase_07 AC 106 ms
72,956 KB
testcase_08 AC 102 ms
73,000 KB
testcase_09 AC 105 ms
72,860 KB
testcase_10 AC 106 ms
73,096 KB
testcase_11 AC 105 ms
72,988 KB
testcase_12 AC 125 ms
78,424 KB
testcase_13 AC 129 ms
78,268 KB
testcase_14 AC 132 ms
78,868 KB
testcase_15 AC 124 ms
78,352 KB
testcase_16 AC 128 ms
78,336 KB
testcase_17 AC 135 ms
78,164 KB
testcase_18 AC 125 ms
78,092 KB
testcase_19 AC 129 ms
78,136 KB
testcase_20 AC 131 ms
78,432 KB
testcase_21 AC 127 ms
78,188 KB
testcase_22 AC 139 ms
80,784 KB
testcase_23 AC 144 ms
80,896 KB
testcase_24 AC 141 ms
80,732 KB
testcase_25 AC 141 ms
80,788 KB
testcase_26 AC 144 ms
80,632 KB
testcase_27 AC 411 ms
124,004 KB
testcase_28 AC 400 ms
125,440 KB
testcase_29 AC 417 ms
120,920 KB
testcase_30 AC 392 ms
125,028 KB
testcase_31 AC 407 ms
123,436 KB
testcase_32 MLE -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

# import pypyjit
# pypyjit.set_param('max_unroll_recursion=-1')
from collections import *
from itertools import *
from functools import *
from heapq import *
import sys,math
input = sys.stdin.buffer.readline

N,A,B = map(int,input().split())
X = list(map(int,input().split()))

INF = (1<<40)

n = math.ceil(math.sqrt(N))
M = n**2
X = X + [INF]*(M - len(X))

e = [[] for _ in range(M+n)]

for i in range(n):
    
    for j in range(n):
        
        e[M+i].append(n*i+j)
        
for i in range(N):
    
    xi = X[i]
    l = N
    ng = i
    while l-ng>1:
        
        mid = (l+ng)//2
        
        if X[mid]>=A+xi:
            
            l = mid
        else:
            
            ng = mid
            
            
    r = i
    ng = N
    while ng-r>1:
        mid = (ng+r)//2
        
        if X[mid]<=xi+B:
            r = mid
        else:
            ng = mid
    r += 1
    if l < r:
    
        L = (l+n-1)//n
        R = (r+n-1)//n
        
        if L==R:
            for j in range(l,r):
                e[i].append(j)
                e[j].append(i)
        else:
        
            for j in range(l,n*L):
                e[i].append(j)
                e[j].append(i)
                
            for j in range(M+L,M+R-1):
                e[i].append(j)
                e[j].append(i)
                
            for j in range(n*(R-1),r):
                e[i].append(j)
                e[j].append(i)
            

        
visited = [False]*(M+n)
ans = [1]*(M+n)

for i in range(N):
    
    if visited[i]:
        continue
    
    visited[i]=True
    v = deque()
    v.append(i)
    target = deque()
    target.append(i)
    cnt = 1
    while v:
        
        x = v.popleft()
        
        for ix in e[x]:
            
            if visited[ix]:
                continue
            visited[ix] = True
            if ix<N:
                cnt += 1
                target.append(ix)
            v.append(ix)
    
    while target:
        y = target.pop()
        ans[y] = cnt
        
        
print(*ans[:N],sep='\n')
0