結果

問題 No.1950 片道きゃっちぼーる
ユーザー とりゐとりゐ
提出日時 2022-05-20 22:29:59
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 1,606 bytes
コンパイル時間 136 ms
コンパイル使用メモリ 82,108 KB
実行使用メモリ 234,396 KB
最終ジャッジ日時 2024-09-20 08:43:28
合計ジャッジ時間 9,110 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,520 KB
testcase_01 AC 36 ms
53,048 KB
testcase_02 AC 33 ms
52,652 KB
testcase_03 AC 446 ms
234,396 KB
testcase_04 RE -
testcase_05 AC 35 ms
52,952 KB
testcase_06 RE -
testcase_07 AC 266 ms
167,316 KB
testcase_08 AC 285 ms
166,072 KB
testcase_09 RE -
testcase_10 AC 391 ms
197,932 KB
testcase_11 AC 357 ms
199,916 KB
testcase_12 AC 376 ms
200,380 KB
testcase_13 AC 545 ms
195,132 KB
testcase_14 AC 398 ms
156,716 KB
testcase_15 RE -
testcase_16 RE -
testcase_17 AC 35 ms
53,360 KB
testcase_18 AC 392 ms
194,488 KB
testcase_19 RE -
testcase_20 AC 279 ms
166,556 KB
testcase_21 AC 395 ms
169,912 KB
testcase_22 AC 371 ms
166,576 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def scc(N, G, RG):
    order = []
    used = [0]*N
    group = [None]*N
    def dfs(s):
        used[s] = 1
        for t in G[s]:
            if not used[t]:
                dfs(t)
        order.append(s)
    def rdfs(s, col):
        group[s] = col
        used[s] = 1
        for t in RG[s]:
            if not used[t]:
                rdfs(t, col)
    for i in range(N):
        if not used[i]:
            dfs(i)
    used = [0]*N
    label = 0
    for s in reversed(order):
        if not used[s]:
            rdfs(s, label)
            label += 1
    return label, group

# 縮約後のグラフを構築
def construct(N, G, label, group):
    G0 = [set() for i in range(label)]
    GP = [[] for i in range(label)]
    for v in range(N):
        lbs = group[v]
        for w in G[v]:
            lbt = group[w]
            if lbs == lbt:
                continue
            G0[lbs].add(lbt)
        GP[lbs].append(v)
    return G0, GP


n=int(input())
x=list(map(int,input().split()))
a=list(map(int,input().split()))

G=[[] for i in range(n)]
RG=[[] for i in range(n)]

id={}
for i in range(n):
  id[x[i]]=i

for i in range(n):
  xi,ai=x[i],a[i]
  if xi-ai in id:
    j=id[xi-ai]
    G[j].append(i)
    RG[i].append(j)
  if xi+ai in id:
    j=id[xi+ai]
    G[j].append(i)
    RG[i].append(j)

label,group=scc(n,G,RG)
G0,GP=construct(n, G, label, group)

mx=[a[i]+x[i] for i in range(n)]
mx2=[0]*label

for i in range(label):
  tmp=mx2[i]
  for j in GP[i]:
    tmp=max(tmp,mx[j])
  for j in GP[i]:
    mx[j]=tmp
  for to in G0[i]:
    mx2[to]=max(tmp,mx2[to])

for i in range(n):
  print(mx[i]-x[i])
0