結果

問題 No.2779 Don't make Pair
ユーザー ButterflvButterflv
提出日時 2024-06-07 21:59:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 240 ms / 2,000 ms
コード長 3,327 bytes
コンパイル時間 1,390 ms
コンパイル使用メモリ 81,260 KB
実行使用メモリ 117,344 KB
最終ジャッジ日時 2024-06-07 22:00:06
合計ジャッジ時間 6,340 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
54,668 KB
testcase_01 AC 34 ms
54,904 KB
testcase_02 AC 35 ms
54,848 KB
testcase_03 AC 35 ms
55,268 KB
testcase_04 AC 34 ms
55,460 KB
testcase_05 AC 36 ms
56,044 KB
testcase_06 AC 35 ms
55,536 KB
testcase_07 AC 36 ms
56,004 KB
testcase_08 AC 35 ms
55,112 KB
testcase_09 AC 54 ms
71,268 KB
testcase_10 AC 77 ms
87,840 KB
testcase_11 AC 69 ms
73,024 KB
testcase_12 AC 156 ms
100,168 KB
testcase_13 AC 160 ms
99,940 KB
testcase_14 AC 115 ms
88,148 KB
testcase_15 AC 201 ms
114,416 KB
testcase_16 AC 198 ms
117,344 KB
testcase_17 AC 177 ms
102,952 KB
testcase_18 AC 139 ms
95,244 KB
testcase_19 AC 210 ms
105,752 KB
testcase_20 AC 140 ms
88,484 KB
testcase_21 AC 215 ms
113,844 KB
testcase_22 AC 210 ms
113,744 KB
testcase_23 AC 234 ms
113,840 KB
testcase_24 AC 209 ms
113,804 KB
testcase_25 AC 240 ms
114,160 KB
testcase_26 AC 220 ms
113,808 KB
testcase_27 AC 226 ms
114,140 KB
testcase_28 AC 209 ms
113,992 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class segtree():
    n=1
    size=1
    log=2
    d=[0]
    op=None
    e=10**15
    def __init__(self,V,OP,E):
        self.n=len(V)
        self.op=OP
        self.e=E
        self.log=(self.n-1).bit_length()
        self.size=1<<self.log
        self.d=[E for i in range(2*self.size)]
        for i in range(self.n):
            self.d[self.size+i]=V[i]
        for i in range(self.size-1,0,-1):
            self.update(i)
    def set(self,p,x):
        assert 0<=p and p<self.n
        p+=self.size
        self.d[p]=x
        for i in range(1,self.log+1):
            self.update(p>>i)
    def get(self,p):
        assert 0<=p and p<self.n
        return self.d[p+self.size]
    def prod(self,l,r):
        assert 0<=l and l<=r and r<=self.n
        sml=self.e
        smr=self.e
        l+=self.size
        r+=self.size
        while(l<r):
            if (l&1):
                sml=self.op(sml,self.d[l])
                l+=1
            if (r&1):
                smr=self.op(self.d[r-1],smr)
                r-=1
            l>>=1
            r>>=1
        return self.op(sml,smr)
    def all_prod(self):
        return self.d[1]
    def max_right(self,l,f):
        assert 0<=l and l<=self.n
        assert f(self.e)
        if l==self.n:
            return self.n
        l+=self.size
        sm=self.e
        while(1):
            while(l%2==0):
                l>>=1
            if not(f(self.op(sm,self.d[l]))):
                while(l<self.size):
                    l=2*l
                    if f(self.op(sm,self.d[l])):
                        sm=self.op(sm,self.d[l])
                        l+=1
                return l-self.size
            sm=self.op(sm,self.d[l])
            l+=1
            if (l&-l)==l:
                break
        return self.n
    def min_left(self,r,f):
        assert 0<=r and r<=self.n
        assert f(self.e)
        if r==0:
            return 0
        r+=self.size
        sm=self.e
        while(1):
            r-=1
            while(r>1 and (r%2)):
                r>>=1
            if not(f(self.op(self.d[r],sm))):
                while(r<self.size):
                    r=(2*r+1)
                    if f(self.op(self.d[r],sm)):
                        sm=self.op(self.d[r],sm)
                        r-=1
                return r+1-self.size
            sm=self.op(self.d[r],sm)
            if (r& -r)==r:
                break
        return 0
    def update(self,k):
        self.d[k]=self.op(self.d[2*k],self.d[2*k+1])
    def __str__(self):
        return str([self.get(i) for i in range(self.n)])


from collections import defaultdict
N=int(input())
A=list(map(int,input().split()))

set_=set()
for elm in A: set_.add(elm)

zaatsu = dict()
ind = 0
for elm in set_:
  zaatsu[elm] = ind
  ind+=1

left_init = [0]*ind
left_init[zaatsu[A[0]]] += 1
right_init = [0]*ind
for i in range(1, len(A)):
  right_init[zaatsu[A[i]]] += 1

def op(left, right): return max(left, right)
e=0

left_seg = segtree(left_init, op, e)
right_seg = segtree(right_init, op, e)

ind = 1
ans = []
for i in range(N-1):
  if left_seg.all_prod()<=1 and right_seg.all_prod()<=1: ans.append(ind)
  bef = left_seg.get(zaatsu[A[ind]])
  left_seg.set(zaatsu[A[ind]], bef + 1)
  bef = right_seg.get(zaatsu[A[ind]])
  right_seg.set(zaatsu[A[ind]], bef - 1)
  ind += 1

print(len(ans))
print(*ans)
0