結果

問題 No.930 数列圧縮
ユーザー tamatotamato
提出日時 2019-11-22 22:16:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 201 ms / 2,000 ms
コード長 1,881 bytes
コンパイル時間 165 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 95,008 KB
最終ジャッジ日時 2024-10-11 03:58:00
合計ジャッジ時間 4,451 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,968 KB
testcase_01 AC 37 ms
52,608 KB
testcase_02 AC 38 ms
52,224 KB
testcase_03 AC 41 ms
52,992 KB
testcase_04 AC 46 ms
60,544 KB
testcase_05 AC 56 ms
67,840 KB
testcase_06 AC 45 ms
61,312 KB
testcase_07 AC 74 ms
76,544 KB
testcase_08 AC 115 ms
90,956 KB
testcase_09 AC 161 ms
89,960 KB
testcase_10 AC 126 ms
88,760 KB
testcase_11 AC 127 ms
89,564 KB
testcase_12 AC 139 ms
92,228 KB
testcase_13 AC 107 ms
85,280 KB
testcase_14 AC 104 ms
85,604 KB
testcase_15 AC 121 ms
94,696 KB
testcase_16 AC 144 ms
94,580 KB
testcase_17 AC 165 ms
94,384 KB
testcase_18 AC 201 ms
93,984 KB
testcase_19 AC 160 ms
94,588 KB
testcase_20 AC 148 ms
91,952 KB
testcase_21 AC 137 ms
95,000 KB
testcase_22 AC 37 ms
52,736 KB
testcase_23 AC 114 ms
95,008 KB
testcase_24 AC 37 ms
52,480 KB
testcase_25 AC 39 ms
52,608 KB
testcase_26 AC 39 ms
52,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class Bit:
    def __init__(self, n):
        self.size = n
        self.tree = [0] * (n + 1)

    def sum(self, i):
        s = 0
        while i > 0:
            s += self.tree[i]
            i -= i & -i
        return s

    def add(self, i, x):
        while i <= self.size:
            self.tree[i] += x
            i += i & -i

    # i+1番目からR番目まで足すとt以上となるような最小のRを返す
    def bisect_plus(self, i, t):
        L = i
        R = self.size
        R_prev = R
        sum_i = self.sum(i)
        while True:
            range_sum = self.sum(R) - sum_i
            if range_sum < t:
                if R == self.size:
                    return self.size + 1
                L, R = R, R_prev
            else:
                R_prev = R
                R = (L + R + 1) // 2
                if R == R_prev:
                    return R

    # L番目からi-1番目まで足すとt以上となるような最小のLを返す
    def bisect_minus(self, i, t):
        L = 1
        R = i
        L_prev = L
        sum_i = self.sum(i - 1)
        while True:
            range_sum = sum_i - self.sum(L - 1)
            if range_sum < t:
                if L == 1:
                    return 0
                L, R = L_prev, L
            else:
                L_prev = L
                L = (L + R) // 2
                if L == L_prev:
                    return L


N = int(input())
A = list(map(int, input().split()))

seen = Bit(N)
pos = {}
for i, a in enumerate(A):
    seen.add(a, 1)
    pos[a] = i+1
ans = []
for i in range(1, N):
    if seen.sum(pos[i]) == 1:
        for j in range(N):
            if A[j] > i:
                ans.append(A[j])
        break
    elif seen.sum(N) - seen.sum(pos[i]) == 0:
        print('No')
        exit()
    else:
        ans.append(i)
        seen.add(pos[i], -1)

print('Yes')
print(*ans)
0