結果

問題 No.1950 片道きゃっちぼーる
ユーザー H20H20
提出日時 2022-04-02 19:57:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,337 ms / 3,000 ms
コード長 531 bytes
コンパイル時間 169 ms
コンパイル使用メモリ 82,504 KB
実行使用メモリ 410,144 KB
最終ジャッジ日時 2024-06-01 03:55:24
合計ジャッジ時間 17,426 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
54,684 KB
testcase_01 AC 44 ms
53,996 KB
testcase_02 AC 42 ms
53,972 KB
testcase_03 AC 1,060 ms
397,828 KB
testcase_04 AC 1,251 ms
410,144 KB
testcase_05 AC 43 ms
55,408 KB
testcase_06 AC 756 ms
374,380 KB
testcase_07 AC 437 ms
223,388 KB
testcase_08 AC 838 ms
221,492 KB
testcase_09 AC 693 ms
201,432 KB
testcase_10 AC 567 ms
178,864 KB
testcase_11 AC 380 ms
185,444 KB
testcase_12 AC 477 ms
190,604 KB
testcase_13 AC 467 ms
166,792 KB
testcase_14 AC 423 ms
154,332 KB
testcase_15 AC 1,337 ms
336,732 KB
testcase_16 AC 756 ms
293,868 KB
testcase_17 AC 43 ms
54,776 KB
testcase_18 AC 640 ms
212,416 KB
testcase_19 AC 1,316 ms
291,128 KB
testcase_20 AC 374 ms
186,804 KB
testcase_21 AC 384 ms
160,696 KB
testcase_22 AC 385 ms
160,824 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())) 
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