結果
問題 | No.860 買い物 |
ユーザー | roaris |
提出日時 | 2022-10-08 20:33:49 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 589 ms / 1,000 ms |
コード長 | 1,366 bytes |
コンパイル時間 | 332 ms |
コンパイル使用メモリ | 82,296 KB |
実行使用メモリ | 119,188 KB |
最終ジャッジ日時 | 2024-06-22 23:02:30 |
合計ジャッジ時間 | 6,979 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 36 ms
52,224 KB |
testcase_01 | AC | 36 ms
52,224 KB |
testcase_02 | AC | 36 ms
52,224 KB |
testcase_03 | AC | 36 ms
52,608 KB |
testcase_04 | AC | 42 ms
52,352 KB |
testcase_05 | AC | 37 ms
52,608 KB |
testcase_06 | AC | 108 ms
78,376 KB |
testcase_07 | AC | 564 ms
119,040 KB |
testcase_08 | AC | 556 ms
119,188 KB |
testcase_09 | AC | 567 ms
119,168 KB |
testcase_10 | AC | 565 ms
119,040 KB |
testcase_11 | AC | 248 ms
117,760 KB |
testcase_12 | AC | 268 ms
117,644 KB |
testcase_13 | AC | 519 ms
119,084 KB |
testcase_14 | AC | 589 ms
119,092 KB |
testcase_15 | AC | 306 ms
114,836 KB |
testcase_16 | AC | 526 ms
118,912 KB |
testcase_17 | AC | 217 ms
118,804 KB |
ソースコード
import sys input = sys.stdin.readline class Unionfind: def __init__(self, n): self.par = [-1]*n self.rank = [1]*n def root(self, x): r = x while not self.par[r]<0: r = self.par[r] t = x while t!=r: tmp = t t = self.par[t] self.par[tmp] = r return r def unite(self, x, y): rx = self.root(x) ry = self.root(y) if rx==ry: return if self.rank[rx]<=self.rank[ry]: self.par[ry] += self.par[rx] self.par[rx] = ry if self.rank[rx]==self.rank[ry]: self.rank[ry] += 1 else: self.par[rx] += self.par[ry] self.par[ry] = rx def is_same(self, x, y): return self.root(x)==self.root(y) def count(self, x): return -self.par[self.root(x)] N = int(input()) CD = [tuple(map(int, input().split())) for _ in range(N)] edges = [] for v in range(N): edges.append((v, N, CD[v][0])) if v<N-1: edges.append((v, v+1, CD[v+1][1])) edges.sort(key=lambda t: t[2]) uf = Unionfind(N+1) ans = 0 for u, v, w in edges: if not uf.is_same(u, v): uf.unite(u, v) ans += w print(ans+sum(C for C, _ in CD))