結果

問題 No.318 学学学学学
ユーザー AEnAEn
提出日時 2023-05-30 02:01:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 378 ms / 2,000 ms
コード長 2,879 bytes
コンパイル時間 384 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 117,772 KB
最終ジャッジ日時 2024-06-08 19:52:33
合計ジャッジ時間 7,240 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 80 ms
78,336 KB
testcase_01 AC 90 ms
82,944 KB
testcase_02 AC 95 ms
85,376 KB
testcase_03 AC 87 ms
81,408 KB
testcase_04 AC 90 ms
83,808 KB
testcase_05 AC 242 ms
117,772 KB
testcase_06 AC 378 ms
97,544 KB
testcase_07 AC 365 ms
96,348 KB
testcase_08 AC 236 ms
95,360 KB
testcase_09 AC 176 ms
93,056 KB
testcase_10 AC 123 ms
91,776 KB
testcase_11 AC 228 ms
117,724 KB
testcase_12 AC 186 ms
97,016 KB
testcase_13 AC 144 ms
96,128 KB
testcase_14 AC 134 ms
93,872 KB
testcase_15 AC 127 ms
92,544 KB
testcase_16 AC 109 ms
91,904 KB
testcase_17 AC 202 ms
102,272 KB
testcase_18 AC 140 ms
99,456 KB
testcase_19 AC 201 ms
102,016 KB
testcase_20 AC 124 ms
90,680 KB
testcase_21 AC 41 ms
54,144 KB
testcase_22 AC 39 ms
53,888 KB
testcase_23 AC 39 ms
54,144 KB
testcase_24 AC 40 ms
54,144 KB
testcase_25 AC 38 ms
54,144 KB
testcase_26 AC 41 ms
54,144 KB
testcase_27 AC 44 ms
53,888 KB
testcase_28 AC 39 ms
54,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

bucket_size = 350
class SqrtDecomposition:
    def __init__(self, N, init,ide):
        """
        平方分割して、各バケット内での値を計算
        """
        self.N = N
        self.data = []
        self.lazydata = []
        d = []
        if init==0:
            for i in range(bucket_size):
                self.data.append([ide]*bucket_size)
                self.lazydata.append(None)
        else:
            for i in range(self.N):
                if (i+1)%bucket_size==0:
                    d.append(init[i])
                    self.data.append(d)
                    self.lazydata.append(None)
                    d = []
                else:
                    d.append(init[i])
            if d:
                self.data.append(d+[ide]*(bucket_size-len(d)))
                self.lazydata.append(None)
    
    def update(self, l, r, x):
        """0-indexedの[l,r)にxで更新"""
        # 更新処理をかく
        a1, b1 = l//bucket_size, l%bucket_size
        a2, b2 = r//bucket_size, r%bucket_size
        if a1==a2:
            if self.lazydata[a1] != None:
                for i in range(bucket_size):
                    if b1<=i<b2:
                        self.data[a1][i] = x
                    else:
                        self.data[a1][i] = self.lazydata[a1]
                self.lazydata[a1] = None
            else:
                for i in range(b1,b2):
                    self.data[a1][i] = x
        else:
            if self.lazydata[a1] != None:
                for i in range(bucket_size):
                    if i>=b1:
                        self.data[a1][i] = x
                    else:
                        self.data[a1][i] = self.lazydata[a1]
                self.lazydata[a1] = None
            else:
                for i in range(b1,bucket_size):
                    self.data[a1][i] = x
            for i in range(a1+1, a2):
                self.lazydata[i] = x
            if self.lazydata[a2] != None:
                for i in range(bucket_size):
                    if i<b2:
                        self.data[a2][i] = x
                    else:
                        self.data[a2][i] = self.lazydata[a2]
                self.lazydata[a2] = None
            else:
                for i in range(b2):
                    self.data[a2][i] = x
    
    def get(self, i):
        """0-indexedのi番目を取得で計算"""
        a, b = i//bucket_size, i%bucket_size
        if self.lazydata[a] != None:
            return self.lazydata[a]
        else:
            return self.data[a][b]

from collections import defaultdict
N = int(input())
a = list(map(int, input().split()))
d = defaultdict(list)
for i in range(N):
    d[a[i]].append(i)

sd = SqrtDecomposition(N,a,0)
a = sorted(list(set(a)))
for nn in a:
    sd.update(d[nn][0],d[nn][-1]+1,nn)

ans = [sd.get(i) for i in range(N)]
print(*ans)
0