結果

問題 No.2080 Simple Nim Query
ユーザー titiatitia
提出日時 2022-09-26 02:24:12
言語 PyPy3
(7.3.13)
結果
AC  
実行時間 374 ms / 3,000 ms
コード長 1,572 bytes
コンパイル時間 277 ms
コンパイル使用メモリ 87,140 KB
実行使用メモリ 110,608 KB
最終ジャッジ日時 2023-09-03 02:50:06
合計ジャッジ時間 4,072 ms
ジャッジサーバーID
(参考情報)
judge13 / judge14
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 62 ms
71,112 KB
testcase_01 AC 62 ms
71,356 KB
testcase_02 AC 64 ms
71,380 KB
testcase_03 AC 270 ms
81,492 KB
testcase_04 AC 205 ms
79,476 KB
testcase_05 AC 326 ms
107,624 KB
testcase_06 AC 365 ms
110,608 KB
testcase_07 AC 374 ms
110,264 KB
testcase_08 AC 372 ms
110,140 KB
testcase_09 AC 352 ms
110,008 KB
testcase_10 AC 194 ms
110,416 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N,Q=map(int,input().split())
A=list(map(int,input().split()))
B=[0]*N

for i in range(N):
    if A[i]==1:
        B[i]=0
    else:
        B[i]=i+1

def seg_function(x,y): # Segment treeで扱うfunction
    return max(x,y)

seg_el=1<<((N+1).bit_length()) # Segment treeの台の要素数
SEG=[0]*(2*seg_el) # 1-indexedなので、要素数2*seg_el.Segment treeの初期値で初期化

for i in range(N): # Aを対応する箇所へupdate
    SEG[i+seg_el]=B[i]

for i in range(seg_el-1,0,-1): # 親の部分もupdate
    SEG[i]=seg_function(SEG[i*2],SEG[i*2+1])

def update(n,x,seg_el): # A[n]をxへ更新
    i=n+seg_el
    SEG[i]=x
    i>>=1 # 子ノードへ
    
    while i!=0:
        SEG[i]=seg_function(SEG[i*2],SEG[i*2+1])
        i>>=1
        
def getvalues(l,r): # 区間[l,r)に関するseg_functionを調べる
    L=l+seg_el
    R=r+seg_el
    ANS=0

    while L<R:
        if L & 1:
            ANS=seg_function(ANS , SEG[L])
            L+=1

        if R & 1:
            R-=1
            ANS=seg_function(ANS , SEG[R])
        L>>=1
        R>>=1

    return ANS

for tests in range(Q):
    t,x,y=map(int,input().split())

    if t==1:
        x-=1
        if y==1:
            update(x,0,seg_el)
        else:
            update(x,x+1,seg_el)

    else:
        k=getvalues(x-1,y)

        if k==0:
            if (y-x)%2==1:
                print("S")
            else:
                print("F")
        else:
            if (y-k)%2==1:
                print("S")
            else:
                print("F")
0