結果

問題 No.1950 片道きゃっちぼーる
ユーザー ああいいああいい
提出日時 2022-05-20 22:10:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 646 ms / 3,000 ms
コード長 810 bytes
コンパイル時間 279 ms
コンパイル使用メモリ 82,016 KB
実行使用メモリ 171,000 KB
最終ジャッジ日時 2024-09-20 08:21:02
合計ジャッジ時間 9,853 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
51,712 KB
testcase_01 AC 35 ms
52,096 KB
testcase_02 AC 36 ms
52,096 KB
testcase_03 AC 293 ms
170,780 KB
testcase_04 AC 351 ms
170,976 KB
testcase_05 AC 37 ms
51,968 KB
testcase_06 AC 263 ms
158,576 KB
testcase_07 AC 254 ms
168,180 KB
testcase_08 AC 536 ms
168,440 KB
testcase_09 AC 320 ms
171,000 KB
testcase_10 AC 428 ms
168,708 KB
testcase_11 AC 280 ms
168,192 KB
testcase_12 AC 283 ms
168,328 KB
testcase_13 AC 370 ms
149,968 KB
testcase_14 AC 362 ms
150,268 KB
testcase_15 AC 636 ms
168,580 KB
testcase_16 AC 272 ms
152,792 KB
testcase_17 AC 37 ms
52,352 KB
testcase_18 AC 361 ms
170,084 KB
testcase_19 AC 646 ms
168,572 KB
testcase_20 AC 274 ms
168,688 KB
testcase_21 AC 391 ms
169,788 KB
testcase_22 AC 356 ms
169,992 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

d = dict()
for i,x in enumerate(X):
    d[x] = i
G = [[] for _ in range(N)]
for i in range(N):
    x = X[i]
    a = A[i]
    if x + a in d:
        G[d[x + a]].append(i)
    if x - a in d:
        G[d[x - a]].append(i)
dp = [X[i] + A[i] for i in range(N)]
top = [(X[i],A[i],i) for i in range(N)]
top.sort(key = lambda x:x[0] + x[1],reverse = True)
memo =[0] * N
stack = []
for x,a,i in top:
    if memo[i] == 0:
        stack.append(i)
        memo[i] = 1
        while stack:
            now = stack.pop()
            for j in G[now]:
                if memo[j] == 0:
                    memo[j] = 1
                    dp[j] = dp[i]
                    stack.append(j)
for i in range(N):
    print(dp[i] - X[i])
       
0