結果
問題 | No.1950 片道きゃっちぼーる |
ユーザー | 👑 rin204 |
提出日時 | 2022-05-20 22:05:35 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,765 bytes |
コンパイル時間 | 156 ms |
コンパイル使用メモリ | 82,032 KB |
実行使用メモリ | 169,412 KB |
最終ジャッジ日時 | 2024-09-20 08:15:13 |
合計ジャッジ時間 | 7,439 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 37 ms
52,352 KB |
testcase_01 | AC | 37 ms
52,224 KB |
testcase_02 | AC | 35 ms
52,480 KB |
testcase_03 | AC | 222 ms
166,296 KB |
testcase_04 | AC | 221 ms
166,360 KB |
testcase_05 | AC | 35 ms
52,480 KB |
testcase_06 | AC | 190 ms
150,292 KB |
testcase_07 | AC | 205 ms
169,412 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | AC | 237 ms
169,260 KB |
testcase_12 | AC | 238 ms
168,540 KB |
testcase_13 | AC | 227 ms
144,368 KB |
testcase_14 | AC | 225 ms
143,916 KB |
testcase_15 | WA | - |
testcase_16 | AC | 202 ms
145,416 KB |
testcase_17 | WA | - |
testcase_18 | AC | 243 ms
167,224 KB |
testcase_19 | WA | - |
testcase_20 | AC | 234 ms
168,928 KB |
testcase_21 | AC | 247 ms
165,220 KB |
testcase_22 | AC | 255 ms
164,972 KB |
ソースコード
class UnionFind: def __init__(self, n): self.n = n self.parents = [-1] * n self.group = n self.max_ = [-1] * n def find(self, x): if self.parents[x] < 0: return x else: self.parents[x] = self.find(self.parents[x]) return self.parents[x] def union(self, x, y): x = self.find(x) y = self.find(y) if x == y: return self.group -= 1 if self.parents[x] > self.parents[y]: x, y = y, x self.parents[x] += self.parents[y] self.parents[y] = x self.max_[x] = max(self.max_[x], self.max_[y]) def size(self, x): return -self.parents[self.find(x)] def same(self, x, y): return self.find(x) == self.find(y) def members(self, x): root = self.find(x) return [i for i in range(self.n) if self.find(i) == root] def roots(self): return [i for i, x in enumerate(self.parents) if x < 0] def group_count(self): return self.group def all_group_members(self): dic = {r:[] for r in self.roots()} for i in range(self.n): dic[self.find(i)].append(i) return dic def __str__(self): return '\n'.join('{}: {}'.format(r, self.members(r)) for r in self.roots()) n = int(input()) X = list(map(int, input().split())) A = list(map(int, input().split())) dic = {} for i, x in enumerate(X): dic[x] = i UF = UnionFind(n) for i in range(n): UF.max_[i] = A[i] + X[i] for i in range(n): if X[i] - A[i] in dic: UF.union(i, dic[X[i] - A[i]]) if X[i] + A[i] in dic: UF.union(i, dic[X[i] + A[i]]) for i in range(n): print(UF.max_[UF.find(i)] - X[i])