結果
問題 | No.1438 Broken Drawers |
ユーザー | wolgnik |
提出日時 | 2021-03-26 21:42:09 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 140 ms / 2,000 ms |
コード長 | 1,055 bytes |
コンパイル時間 | 645 ms |
コンパイル使用メモリ | 82,048 KB |
実行使用メモリ | 108,288 KB |
最終ジャッジ日時 | 2024-11-28 22:24:02 |
合計ジャッジ時間 | 4,481 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 44 ms
51,584 KB |
testcase_01 | AC | 44 ms
51,840 KB |
testcase_02 | AC | 43 ms
52,096 KB |
testcase_03 | AC | 42 ms
51,712 KB |
testcase_04 | AC | 43 ms
52,096 KB |
testcase_05 | AC | 42 ms
51,840 KB |
testcase_06 | AC | 97 ms
104,576 KB |
testcase_07 | AC | 112 ms
107,776 KB |
testcase_08 | AC | 42 ms
52,224 KB |
testcase_09 | AC | 43 ms
52,352 KB |
testcase_10 | AC | 43 ms
51,968 KB |
testcase_11 | AC | 77 ms
72,192 KB |
testcase_12 | AC | 100 ms
86,272 KB |
testcase_13 | AC | 112 ms
94,464 KB |
testcase_14 | AC | 95 ms
82,724 KB |
testcase_15 | AC | 132 ms
104,196 KB |
testcase_16 | AC | 132 ms
104,040 KB |
testcase_17 | AC | 133 ms
107,136 KB |
testcase_18 | AC | 138 ms
107,648 KB |
testcase_19 | AC | 138 ms
107,520 KB |
testcase_20 | AC | 136 ms
108,032 KB |
testcase_21 | AC | 140 ms
108,032 KB |
testcase_22 | AC | 135 ms
107,776 KB |
testcase_23 | AC | 139 ms
107,600 KB |
testcase_24 | AC | 135 ms
107,904 KB |
testcase_25 | AC | 136 ms
107,904 KB |
testcase_26 | AC | 136 ms
108,288 KB |
testcase_27 | AC | 135 ms
108,112 KB |
ソースコード
import sys input = sys.stdin.readline N = int(input()) a = list(map(int, input().split())) class UnionFind(): def __init__(self, n): self.n = n self.root = [-1] * (n + 1) self.rnk = [0] * (n + 1) def Find_Root(self, x): if self.root[x] < 0: return x else: self.root[x] = self.Find_Root(self.root[x]) return self.root[x] def Unite(self, x, y): x = self.Find_Root(x) y = self.Find_Root(y) if x == y: return elif self.rnk[x] > self.rnk[y]: self.root[x] += self.root[y] self.root[y] = x else: self.root[y] += self.root[x] self.root[x] = y if self.rnk[x] == self.rnk[y]: self.rnk[y] += 1 def isSameGroup(self, x, y): return self.Find_Root(x) == self.Find_Root(y) def Count(self, x): return -self.root[self.Find_Root(x)] uf = UnionFind(N) for i in range(N - 1): if a[i] > a[i + 1]: uf.Unite(i, i + 1) res = N s = set() for i in range(N): if uf.Count(i) > 1: s.add(uf.Find_Root(i)) for i in s: res -= uf.Count(i) // 2 print(res)