# 右端の山に石が2個以上あれば先手が勝つ # 右端なしの局面で先手必勝なら先手は全石を取る、後手必勝なら先手は1個残しとするから # 右端の山に石が1個ならば、右端なしの局面で後手先手と考えればいい # 結局右端をkとして、2個以上ある山のindexを見て # k-indexが偶数なら先手勝ち、奇数なら後手勝ち # セグメントツリーで高速化 # ACL for Python # https://github.com/shakayami/ACL-for-python/blob/master/segtree.py # https://github.com/shakayami/ACL-for-python # https://github.com/shakayami/ACL-for-python/wiki/segtree # セグメントツリー:リストの要約値(たとえばMAX)を記録 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<>i) def get(self,p): assert 0<=p and p>=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(l1 & (r%2)): r>>=1 if not(f(self.op(self.d[r],sm))): while(r