結果

問題 No.2740 Old Maid
ユーザー 👑 rin204rin204
提出日時 2024-04-20 13:15:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 280 ms / 2,000 ms
コード長 1,430 bytes
コンパイル時間 211 ms
コンパイル使用メモリ 82,180 KB
実行使用メモリ 113,148 KB
最終ジャッジ日時 2024-10-12 08:41:16
合計ジャッジ時間 12,469 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 196 ms
112,784 KB
testcase_01 AC 192 ms
113,148 KB
testcase_02 AC 205 ms
112,864 KB
testcase_03 AC 209 ms
112,892 KB
testcase_04 AC 207 ms
112,824 KB
testcase_05 AC 210 ms
112,956 KB
testcase_06 AC 207 ms
112,504 KB
testcase_07 AC 208 ms
112,844 KB
testcase_08 AC 207 ms
112,952 KB
testcase_09 AC 198 ms
112,616 KB
testcase_10 AC 197 ms
112,892 KB
testcase_11 AC 188 ms
112,888 KB
testcase_12 AC 224 ms
100,948 KB
testcase_13 AC 239 ms
104,308 KB
testcase_14 AC 141 ms
81,032 KB
testcase_15 AC 148 ms
82,816 KB
testcase_16 AC 203 ms
95,356 KB
testcase_17 AC 149 ms
80,588 KB
testcase_18 AC 240 ms
101,464 KB
testcase_19 AC 168 ms
86,024 KB
testcase_20 AC 262 ms
108,096 KB
testcase_21 AC 146 ms
81,876 KB
testcase_22 AC 197 ms
95,048 KB
testcase_23 AC 129 ms
79,416 KB
testcase_24 AC 156 ms
85,608 KB
testcase_25 AC 269 ms
108,376 KB
testcase_26 AC 77 ms
76,860 KB
testcase_27 AC 120 ms
78,076 KB
testcase_28 AC 196 ms
95,308 KB
testcase_29 AC 201 ms
93,368 KB
testcase_30 AC 101 ms
77,764 KB
testcase_31 AC 280 ms
112,552 KB
testcase_32 AC 177 ms
87,612 KB
testcase_33 AC 271 ms
108,752 KB
testcase_34 AC 192 ms
93,104 KB
testcase_35 AC 157 ms
84,880 KB
testcase_36 AC 160 ms
85,492 KB
testcase_37 AC 178 ms
90,668 KB
testcase_38 AC 163 ms
84,656 KB
testcase_39 AC 141 ms
79,796 KB
testcase_40 AC 217 ms
98,316 KB
testcase_41 AC 249 ms
107,904 KB
testcase_42 AC 38 ms
52,392 KB
testcase_43 AC 38 ms
54,180 KB
testcase_44 AC 38 ms
52,988 KB
testcase_45 AC 38 ms
52,868 KB
testcase_46 AC 38 ms
54,304 KB
testcase_47 AC 36 ms
52,832 KB
testcase_48 AC 37 ms
52,676 KB
testcase_49 AC 36 ms
53,576 KB
testcase_50 AC 37 ms
53,552 KB
testcase_51 AC 36 ms
52,448 KB
testcase_52 AC 38 ms
53,028 KB
testcase_53 AC 37 ms
53,820 KB
testcase_54 AC 37 ms
53,632 KB
testcase_55 AC 39 ms
54,464 KB
testcase_56 AC 38 ms
52,984 KB
testcase_57 AC 39 ms
53,392 KB
testcase_58 AC 38 ms
53,192 KB
testcase_59 AC 37 ms
53,324 KB
testcase_60 AC 37 ms
53,212 KB
testcase_61 AC 38 ms
53,272 KB
testcase_62 AC 37 ms
53,564 KB
testcase_63 AC 37 ms
52,532 KB
testcase_64 AC 37 ms
52,868 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class UnionFind:
    def __init__(self, n):
        self.n = n
        self.par = [-1] * n
        self.group_ = n
        self.R = [i for i in range(n)]

    def find(self, x):
        if self.par[x] < 0:
            return x
        lst = []
        while self.par[x] >= 0:
            lst.append(x)
            x = self.par[x]
        for y in lst:
            self.par[y] = x
        return x

    def unite(self, x, y):
        x = self.find(x)
        y = self.find(y)
        if x == y:
            return False

        if self.par[x] > self.par[y]:
            x, y = y, x

        self.par[x] += self.par[y]
        self.par[y] = x
        self.R[x] = max(self.R[x], self.R[y])
        self.group_ -= 1
        return True

    def size(self, x):
        return -self.par[self.find(x)]

    def same(self, x, y):
        return self.find(x) == self.find(y)

    @property
    def group(self):
        return self.group_


n = int(input())
P = list(map(int, input().split()))
for i in range(n):
    P[i] -= 1

invP = [0] * n
for i in range(n):
    invP[P[i]] = i

Q = []

p = 0
UF = UnionFind(n)
used = [False] * n
while p < n:
    if used[p]:
        p += 1
        continue

    x = invP[p]
    if UF.R[UF.find(x)] == n - 1:
        p += 1
        continue

    y = UF.R[UF.find(x)] + 1
    q = P[y]
    Q += [p + 1, q + 1]
    UF.unite(x, x - 1)
    UF.unite(y, y - 1)
    used[p] = True
    used[q] = True

print(*Q)
0