結果

問題 No.1950 片道きゃっちぼーる
ユーザー H20H20
提出日時 2022-04-08 18:40:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,373 ms / 3,000 ms
コード長 727 bytes
コンパイル時間 372 ms
コンパイル使用メモリ 82,760 KB
実行使用メモリ 407,124 KB
最終ジャッジ日時 2024-06-01 03:55:58
合計ジャッジ時間 16,321 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
54,936 KB
testcase_01 AC 43 ms
54,072 KB
testcase_02 AC 43 ms
55,028 KB
testcase_03 AC 1,081 ms
402,744 KB
testcase_04 AC 1,284 ms
407,124 KB
testcase_05 AC 43 ms
54,672 KB
testcase_06 AC 772 ms
373,836 KB
testcase_07 AC 449 ms
225,776 KB
testcase_08 AC 835 ms
227,960 KB
testcase_09 AC 646 ms
201,324 KB
testcase_10 AC 543 ms
188,612 KB
testcase_11 AC 407 ms
219,164 KB
testcase_12 AC 502 ms
222,424 KB
testcase_13 AC 475 ms
171,972 KB
testcase_14 AC 454 ms
159,004 KB
testcase_15 AC 1,373 ms
363,388 KB
testcase_16 AC 755 ms
285,672 KB
testcase_17 AC 43 ms
54,372 KB
testcase_18 AC 654 ms
208,168 KB
testcase_19 AC 1,232 ms
308,684 KB
testcase_20 AC 406 ms
218,900 KB
testcase_21 AC 409 ms
160,272 KB
testcase_22 AC 404 ms
159,768 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import collections
import sys
sys.setrecursionlimit(10**6)

N = int(input())
X = list(map(int, input().split())) 
A = list(map(int, input().split()))
if 1<=N<=2*10**5 and 1<=min(A) and max(A)<=10**9 and 0<=min(X) and max(X)<=10**9 and len(set(X))==N and X == sorted(X):
    L = collections.defaultdict(list)
    T = collections.defaultdict(int)
    G = []
    for i in range(N):
        G.append(X[i]+A[i])
        L[X[i]+A[i]].append(X[i])
        L[X[i]-A[i]].append(X[i])
    G.sort(reverse=True)
    def dfs(x,v):
        for l in L[x]:
            if T[l]==0:
                T[l]=v
                dfs(l,v)
    for g in G:
        if T[g]==0:
            T[g]=g
            dfs(g,g)
    for x in X:
        print(T[x]-x)
0